<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://dev.eiffel.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Chr1s</id>
		<title>EiffelStudio: an EiffelSoftware project - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://dev.eiffel.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Chr1s"/>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/Special:Contributions/Chr1s"/>
		<updated>2026-05-20T00:51:03Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.24.1</generator>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3932</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3932"/>
				<updated>2006-07-06T05:06:21Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* M4: June 27, 2006 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* Preparing the graphical interface of the feature- and class-wizard&lt;br /&gt;
* design decisions concerning GUI&lt;br /&gt;
* finding most important classes in ES that must be changed&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* Debugger is not available yet&lt;br /&gt;
* the difficulties with compiling forced us to concentrate only on merging the class- and feature-wizard&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on windows/linux-x86&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==M2: June 14, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* every team mate succeeded in compiling the newest version of ES&lt;br /&gt;
* beginning of the main work: feature- and class-wizard&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==M3: June 25, 2006 ==&lt;br /&gt;
&lt;br /&gt;
I am proud to announce that our project is ready for the up-comming presentation in the ETH main hall.&lt;br /&gt;
Thx a lot to all team mates and everyone who supported us. &lt;br /&gt;
&lt;br /&gt;
Your Teamleader&lt;br /&gt;
Christoph&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==M4: June 27, 2006 ==&lt;br /&gt;
&lt;br /&gt;
You can find all important files concerning the project and the presentation on [http://n.ethz.ch/student/clins/public/eswiz my page].&lt;br /&gt;
&lt;br /&gt;
==End: June 28, 2006 ==&lt;br /&gt;
&lt;br /&gt;
Today, the presentation took place and we ranked 5th, winning some price money.&lt;br /&gt;
I want to thank Prof. Meyer for his generosity.&lt;br /&gt;
&lt;br /&gt;
=Project Details=&lt;br /&gt;
&lt;br /&gt;
== Files ==&lt;br /&gt;
&lt;br /&gt;
You can find the actual files on [http://n.ethz.ch/student/clins/public/eswiz this page].&lt;br /&gt;
&lt;br /&gt;
==Editor Based Wizard Execution==&lt;br /&gt;
&lt;br /&gt;
===Motivation===&lt;br /&gt;
&lt;br /&gt;
Wizards are usually only accessible through a GUI Window. This is convenient for beginners, but will slow down advanced programmers.&lt;br /&gt;
So there should be a possibility to access the wizard through the editor directly with an interface similar to a command line interface.&lt;br /&gt;
&lt;br /&gt;
===Idea===&lt;br /&gt;
&lt;br /&gt;
To execute the wizard within the editor you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write the command (possibly over some lines)&lt;br /&gt;
* Press a hotkey to execute the command&lt;br /&gt;
&lt;br /&gt;
Which hotkey we use is to be determined.&lt;br /&gt;
&lt;br /&gt;
The goal of the language to express the commands is to be as short and fast typeable as possible. Therefore it refrains from using charactes for which multiple keys must be pressed. As reference, the US-English and Swiss-German keyboard layout is used. &lt;br /&gt;
The slash '/' is not a one key character on the Swiss-German keyboard, so it can be substituted by '$'&lt;br /&gt;
&lt;br /&gt;
Since the command is only an intermediate format, structure and readability are not considered first priority here.&lt;br /&gt;
===Example===&lt;br /&gt;
&lt;br /&gt;
To create class TEST which is deferred you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write &amp;quot;/c test,d .&amp;quot;&lt;br /&gt;
* Press the hotkey&lt;br /&gt;
&lt;br /&gt;
Create a class COMPLEX with features real, imag, add and mult, arguments of add and mult are not void by precondition:&lt;br /&gt;
* Write&lt;br /&gt;
/c complex&amp;lt;br&amp;gt;&lt;br /&gt;
d read&amp;lt;br&amp;gt;&lt;br /&gt;
d imag&amp;lt;br&amp;gt;&lt;br /&gt;
1d add complex toadd,n&amp;lt;br&amp;gt;&lt;br /&gt;
1d mult complex tomult,n&amp;lt;br&amp;gt;&lt;br /&gt;
.&lt;br /&gt;
* press the Hotkey&lt;br /&gt;
&lt;br /&gt;
===Lexical Analysis===&lt;br /&gt;
&lt;br /&gt;
Token seperators:&lt;br /&gt;
* Whitespaces (' ','\n','\r','\t')&lt;br /&gt;
* ','&lt;br /&gt;
* '/'&lt;br /&gt;
* '$' (for Swiss-German keyboards)&lt;br /&gt;
The last three are tokens themselves, whitespaces are discarded&lt;br /&gt;
&lt;br /&gt;
Note: '.' does '''not''' seperate tokens.&lt;br /&gt;
&lt;br /&gt;
===Syntax===&lt;br /&gt;
&lt;br /&gt;
As the project is still in a starting phase, the information here is incomplete and could be changed.&lt;br /&gt;
&lt;br /&gt;
The syntax is made easy to parse, since we have not much experience with parsers. &lt;br /&gt;
&lt;br /&gt;
'##' means that the two symbols have no whitespace bewteen&lt;br /&gt;
&lt;br /&gt;
These symbols represent a stream of tokens:&lt;br /&gt;
&lt;br /&gt;
* wizardExecBlock ::= blockStartChar classCreate {featureCreate}* blockEndChar&lt;br /&gt;
* classCreate ::= [num_of_parents] ## 'c' className  [inheritance-list] [','attribute_list]&lt;br /&gt;
* inheritance-list ::= {inheritance_clause}*&lt;br /&gt;
* inhertitance_clause ::= {identifier [',' attribute_list]}+&lt;br /&gt;
* className ::= identifier&lt;br /&gt;
* featureCreate ::= [num_of_arguments] ## return_type name {argument_type argument_name}* [','attribute_list]&lt;br /&gt;
* return_type, argument_type ::= type&lt;br /&gt;
* name, argument_name ::= identifier&lt;br /&gt;
&lt;br /&gt;
These symbols represent one token:&lt;br /&gt;
&lt;br /&gt;
* blockStartChar ::= '/' | '$'&lt;br /&gt;
* blockEndChar ::= '.'&lt;br /&gt;
* type ::= {'.' attribute}* identifier [',' attribute_list]&lt;br /&gt;
* identifier ::= {letter}*&lt;br /&gt;
* attribute_list ::= {attribute}+&lt;br /&gt;
* attribute ::= letter&lt;br /&gt;
* letter ::= 'a'..'z'&lt;br /&gt;
* number ::= digit+&lt;br /&gt;
* digit ::= '0'..'9'&lt;br /&gt;
&lt;br /&gt;
===Explanation===&lt;br /&gt;
&lt;br /&gt;
*Feature creation:&lt;br /&gt;
** If num_of_arguments if not given, the feature is a attribute, otherwise it's a method.&lt;br /&gt;
** If return type is 'v'='void' then it's a procedure.&lt;br /&gt;
** Some mappings/abbreviations from heavily used types are intended. For example 'i'='integer', 's'='string', 'd'='double', 'f'='real'&lt;br /&gt;
* Class names are automatically converted to uppercase (it's easier to write all in lowercase)&lt;br /&gt;
&lt;br /&gt;
===Working on===&lt;br /&gt;
&lt;br /&gt;
* Specify how to do lexical analysis.&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [[User:Volkan|Volkan Arslan]] (Advisor) &lt;br /&gt;
* [[User:Chr1s| Christoph Lins]] (project leader, implementation)&lt;br /&gt;
* [[User:Haan| Andreas Hasler]] (implementation)&lt;br /&gt;
* [[User:Thertli| Timon Hertli]] (implementation)&lt;br /&gt;
* [[User:Pvrohr| Peter von Rohr]] (GUI)&lt;br /&gt;
* [[User:DavidFlatz| David Flatz]] (GUI)&lt;br /&gt;
* Damien Müllhaupt (GUI)&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3869</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3869"/>
				<updated>2006-06-28T18:51:18Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* End: June 28, 2006 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* Preparing the graphical interface of the feature- and class-wizard&lt;br /&gt;
* design decisions concerning GUI&lt;br /&gt;
* finding most important classes in ES that must be changed&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* Debugger is not available yet&lt;br /&gt;
* the difficulties with compiling forced us to concentrate only on merging the class- and feature-wizard&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on windows/linux-x86&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==M2: June 14, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* every team mate succeeded in compiling the newest version of ES&lt;br /&gt;
* beginning of the main work: feature- and class-wizard&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==M3: June 25, 2006 ==&lt;br /&gt;
&lt;br /&gt;
I am proud to announce that our project is ready for the up-comming presentation in the ETH main hall.&lt;br /&gt;
Thx a lot to all team mates and everyone who supported us. &lt;br /&gt;
&lt;br /&gt;
Your Teamleader&lt;br /&gt;
Christoph&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==M4: June 27, 2006 ==&lt;br /&gt;
&lt;br /&gt;
You can find all important files concerning the project and the presentation on [http://n.ethz.ch/student/clins/publich/eswis my page].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==End: June 28, 2006 ==&lt;br /&gt;
&lt;br /&gt;
Today, the presentation took place and we ranked 5th, winning some price money.&lt;br /&gt;
I want to thank Prof. Meyer for his generosity.&lt;br /&gt;
&lt;br /&gt;
=Project Details=&lt;br /&gt;
&lt;br /&gt;
== Files ==&lt;br /&gt;
&lt;br /&gt;
You can find the actual files on [http://n.ethz.ch/student/clins/public/eswiz this page].&lt;br /&gt;
&lt;br /&gt;
==Editor Based Wizard Execution==&lt;br /&gt;
&lt;br /&gt;
===Motivation===&lt;br /&gt;
&lt;br /&gt;
Wizards are usually only accessible through a GUI Window. This is convenient for beginners, but will slow down advanced programmers.&lt;br /&gt;
So there should be a possibility to access the wizard through the editor directly with an interface similar to a command line interface.&lt;br /&gt;
&lt;br /&gt;
===Idea===&lt;br /&gt;
&lt;br /&gt;
To execute the wizard within the editor you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write the command (possibly over some lines)&lt;br /&gt;
* Press a hotkey to execute the command&lt;br /&gt;
&lt;br /&gt;
Which hotkey we use is to be determined.&lt;br /&gt;
&lt;br /&gt;
The goal of the language to express the commands is to be as short and fast typeable as possible. Therefore it refrains from using charactes for which multiple keys must be pressed. As reference, the US-English and Swiss-German keyboard layout is used. &lt;br /&gt;
The slash '/' is not a one key character on the Swiss-German keyboard, so it can be substituted by '$'&lt;br /&gt;
&lt;br /&gt;
Since the command is only an intermediate format, structure and readability are not considered first priority here.&lt;br /&gt;
===Example===&lt;br /&gt;
&lt;br /&gt;
To create class TEST which is deferred you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write &amp;quot;/c test,d .&amp;quot;&lt;br /&gt;
* Press the hotkey&lt;br /&gt;
&lt;br /&gt;
Create a class COMPLEX with features real, imag, add and mult, arguments of add and mult are not void by precondition:&lt;br /&gt;
* Write&lt;br /&gt;
/c complex&amp;lt;br&amp;gt;&lt;br /&gt;
d read&amp;lt;br&amp;gt;&lt;br /&gt;
d imag&amp;lt;br&amp;gt;&lt;br /&gt;
1d add complex toadd,n&amp;lt;br&amp;gt;&lt;br /&gt;
1d mult complex tomult,n&amp;lt;br&amp;gt;&lt;br /&gt;
.&lt;br /&gt;
* press the Hotkey&lt;br /&gt;
&lt;br /&gt;
===Lexical Analysis===&lt;br /&gt;
&lt;br /&gt;
Token seperators:&lt;br /&gt;
* Whitespaces (' ','\n','\r','\t')&lt;br /&gt;
* ','&lt;br /&gt;
* '/'&lt;br /&gt;
* '$' (for Swiss-German keyboards)&lt;br /&gt;
The last three are tokens themselves, whitespaces are discarded&lt;br /&gt;
&lt;br /&gt;
Note: '.' does '''not''' seperate tokens.&lt;br /&gt;
&lt;br /&gt;
===Syntax===&lt;br /&gt;
&lt;br /&gt;
As the project is still in a starting phase, the information here is incomplete and could be changed.&lt;br /&gt;
&lt;br /&gt;
The syntax is made easy to parse, since we have not much experience with parsers. &lt;br /&gt;
&lt;br /&gt;
'##' means that the two symbols have no whitespace bewteen&lt;br /&gt;
&lt;br /&gt;
These symbols represent a stream of tokens:&lt;br /&gt;
&lt;br /&gt;
* wizardExecBlock ::= blockStartChar classCreate {featureCreate}* blockEndChar&lt;br /&gt;
* classCreate ::= [num_of_parents] ## 'c' className  [inheritance-list] [','attribute_list]&lt;br /&gt;
* inheritance-list ::= {inheritance_clause}*&lt;br /&gt;
* inhertitance_clause ::= {identifier [',' attribute_list]}+&lt;br /&gt;
* className ::= identifier&lt;br /&gt;
* featureCreate ::= [num_of_arguments] ## return_type name {argument_type argument_name}* [','attribute_list]&lt;br /&gt;
* return_type, argument_type ::= type&lt;br /&gt;
* name, argument_name ::= identifier&lt;br /&gt;
&lt;br /&gt;
These symbols represent one token:&lt;br /&gt;
&lt;br /&gt;
* blockStartChar ::= '/' | '$'&lt;br /&gt;
* blockEndChar ::= '.'&lt;br /&gt;
* type ::= {'.' attribute}* identifier [',' attribute_list]&lt;br /&gt;
* identifier ::= {letter}*&lt;br /&gt;
* attribute_list ::= {attribute}+&lt;br /&gt;
* attribute ::= letter&lt;br /&gt;
* letter ::= 'a'..'z'&lt;br /&gt;
* number ::= digit+&lt;br /&gt;
* digit ::= '0'..'9'&lt;br /&gt;
&lt;br /&gt;
===Explanation===&lt;br /&gt;
&lt;br /&gt;
*Feature creation:&lt;br /&gt;
** If num_of_arguments if not given, the feature is a attribute, otherwise it's a method.&lt;br /&gt;
** If return type is 'v'='void' then it's a procedure.&lt;br /&gt;
** Some mappings/abbreviations from heavily used types are intended. For example 'i'='integer', 's'='string', 'd'='double', 'f'='real'&lt;br /&gt;
* Class names are automatically converted to uppercase (it's easier to write all in lowercase)&lt;br /&gt;
&lt;br /&gt;
===Working on===&lt;br /&gt;
&lt;br /&gt;
* Specify how to do lexical analysis.&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [[User:Volkan|Volkan Arslan]] (Advisor) &lt;br /&gt;
* [[User:Chr1s| Christoph Lins]] (project leader, implementation)&lt;br /&gt;
* [[User:Haan| Andreas Hasler]] (implementation)&lt;br /&gt;
* [[User:Thertli| Timon Hertli]] (implementation)&lt;br /&gt;
* [[User:Pvrohr| Peter von Rohr]] (GUI)&lt;br /&gt;
* [[User:DavidFlatz| David Flatz]] (GUI)&lt;br /&gt;
* Damien Müllhaupt (GUI)&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3868</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3868"/>
				<updated>2006-06-28T18:47:50Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Milestones */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* Preparing the graphical interface of the feature- and class-wizard&lt;br /&gt;
* design decisions concerning GUI&lt;br /&gt;
* finding most important classes in ES that must be changed&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* Debugger is not available yet&lt;br /&gt;
* the difficulties with compiling forced us to concentrate only on merging the class- and feature-wizard&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on windows/linux-x86&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==M2: June 14, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* every team mate succeeded in compiling the newest version of ES&lt;br /&gt;
* beginning of the main work: feature- and class-wizard&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==M3: June 25, 2006 ==&lt;br /&gt;
&lt;br /&gt;
I am proud to announce that our project is ready for the up-comming presentation in the ETH main hall.&lt;br /&gt;
Thx a lot to all team mates and everyone who supported us. &lt;br /&gt;
&lt;br /&gt;
Your Teamleader&lt;br /&gt;
Christoph&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==M4: June 27, 2006 ==&lt;br /&gt;
&lt;br /&gt;
You can find all important files concerning the project and the presentation on [http://n.ethz.ch/student/clins/publich/eswis my page].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==End: June 28, 2006 ==&lt;br /&gt;
&lt;br /&gt;
Today, the presentation took place and we ranked 5th, winning some price money. Thx to Prof. Meyer for your generosity.&lt;br /&gt;
&lt;br /&gt;
=Project Details=&lt;br /&gt;
&lt;br /&gt;
== Files ==&lt;br /&gt;
&lt;br /&gt;
You can find the actual files on [http://n.ethz.ch/student/clins/public/eswiz this page].&lt;br /&gt;
&lt;br /&gt;
==Editor Based Wizard Execution==&lt;br /&gt;
&lt;br /&gt;
===Motivation===&lt;br /&gt;
&lt;br /&gt;
Wizards are usually only accessible through a GUI Window. This is convenient for beginners, but will slow down advanced programmers.&lt;br /&gt;
So there should be a possibility to access the wizard through the editor directly with an interface similar to a command line interface.&lt;br /&gt;
&lt;br /&gt;
===Idea===&lt;br /&gt;
&lt;br /&gt;
To execute the wizard within the editor you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write the command (possibly over some lines)&lt;br /&gt;
* Press a hotkey to execute the command&lt;br /&gt;
&lt;br /&gt;
Which hotkey we use is to be determined.&lt;br /&gt;
&lt;br /&gt;
The goal of the language to express the commands is to be as short and fast typeable as possible. Therefore it refrains from using charactes for which multiple keys must be pressed. As reference, the US-English and Swiss-German keyboard layout is used. &lt;br /&gt;
The slash '/' is not a one key character on the Swiss-German keyboard, so it can be substituted by '$'&lt;br /&gt;
&lt;br /&gt;
Since the command is only an intermediate format, structure and readability are not considered first priority here.&lt;br /&gt;
===Example===&lt;br /&gt;
&lt;br /&gt;
To create class TEST which is deferred you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write &amp;quot;/c test,d .&amp;quot;&lt;br /&gt;
* Press the hotkey&lt;br /&gt;
&lt;br /&gt;
Create a class COMPLEX with features real, imag, add and mult, arguments of add and mult are not void by precondition:&lt;br /&gt;
* Write&lt;br /&gt;
/c complex&amp;lt;br&amp;gt;&lt;br /&gt;
d read&amp;lt;br&amp;gt;&lt;br /&gt;
d imag&amp;lt;br&amp;gt;&lt;br /&gt;
1d add complex toadd,n&amp;lt;br&amp;gt;&lt;br /&gt;
1d mult complex tomult,n&amp;lt;br&amp;gt;&lt;br /&gt;
.&lt;br /&gt;
* press the Hotkey&lt;br /&gt;
&lt;br /&gt;
===Lexical Analysis===&lt;br /&gt;
&lt;br /&gt;
Token seperators:&lt;br /&gt;
* Whitespaces (' ','\n','\r','\t')&lt;br /&gt;
* ','&lt;br /&gt;
* '/'&lt;br /&gt;
* '$' (for Swiss-German keyboards)&lt;br /&gt;
The last three are tokens themselves, whitespaces are discarded&lt;br /&gt;
&lt;br /&gt;
Note: '.' does '''not''' seperate tokens.&lt;br /&gt;
&lt;br /&gt;
===Syntax===&lt;br /&gt;
&lt;br /&gt;
As the project is still in a starting phase, the information here is incomplete and could be changed.&lt;br /&gt;
&lt;br /&gt;
The syntax is made easy to parse, since we have not much experience with parsers. &lt;br /&gt;
&lt;br /&gt;
'##' means that the two symbols have no whitespace bewteen&lt;br /&gt;
&lt;br /&gt;
These symbols represent a stream of tokens:&lt;br /&gt;
&lt;br /&gt;
* wizardExecBlock ::= blockStartChar classCreate {featureCreate}* blockEndChar&lt;br /&gt;
* classCreate ::= [num_of_parents] ## 'c' className  [inheritance-list] [','attribute_list]&lt;br /&gt;
* inheritance-list ::= {inheritance_clause}*&lt;br /&gt;
* inhertitance_clause ::= {identifier [',' attribute_list]}+&lt;br /&gt;
* className ::= identifier&lt;br /&gt;
* featureCreate ::= [num_of_arguments] ## return_type name {argument_type argument_name}* [','attribute_list]&lt;br /&gt;
* return_type, argument_type ::= type&lt;br /&gt;
* name, argument_name ::= identifier&lt;br /&gt;
&lt;br /&gt;
These symbols represent one token:&lt;br /&gt;
&lt;br /&gt;
* blockStartChar ::= '/' | '$'&lt;br /&gt;
* blockEndChar ::= '.'&lt;br /&gt;
* type ::= {'.' attribute}* identifier [',' attribute_list]&lt;br /&gt;
* identifier ::= {letter}*&lt;br /&gt;
* attribute_list ::= {attribute}+&lt;br /&gt;
* attribute ::= letter&lt;br /&gt;
* letter ::= 'a'..'z'&lt;br /&gt;
* number ::= digit+&lt;br /&gt;
* digit ::= '0'..'9'&lt;br /&gt;
&lt;br /&gt;
===Explanation===&lt;br /&gt;
&lt;br /&gt;
*Feature creation:&lt;br /&gt;
** If num_of_arguments if not given, the feature is a attribute, otherwise it's a method.&lt;br /&gt;
** If return type is 'v'='void' then it's a procedure.&lt;br /&gt;
** Some mappings/abbreviations from heavily used types are intended. For example 'i'='integer', 's'='string', 'd'='double', 'f'='real'&lt;br /&gt;
* Class names are automatically converted to uppercase (it's easier to write all in lowercase)&lt;br /&gt;
&lt;br /&gt;
===Working on===&lt;br /&gt;
&lt;br /&gt;
* Specify how to do lexical analysis.&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [[User:Volkan|Volkan Arslan]] (Advisor) &lt;br /&gt;
* [[User:Chr1s| Christoph Lins]] (project leader, implementation)&lt;br /&gt;
* [[User:Haan| Andreas Hasler]] (implementation)&lt;br /&gt;
* [[User:Thertli| Timon Hertli]] (implementation)&lt;br /&gt;
* [[User:Pvrohr| Peter von Rohr]] (GUI)&lt;br /&gt;
* [[User:DavidFlatz| David Flatz]] (GUI)&lt;br /&gt;
* Damien Müllhaupt (GUI)&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3867</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3867"/>
				<updated>2006-06-28T18:33:01Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Team */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* Preparing the graphical interface of the feature- and class-wizard&lt;br /&gt;
* design decisions concerning GUI&lt;br /&gt;
* finding most important classes in ES that must be changed&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* Debugger is not available yet&lt;br /&gt;
* the difficulties with compiling forced us to concentrate only on merging the class- and feature-wizard&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on windows/linux-x86&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==M2: June 14, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* every team mate succeeded in compiling the newest version of ES&lt;br /&gt;
* beginning of the main work: feature- and class-wizard&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==M3: June 25, 2006 ==&lt;br /&gt;
&lt;br /&gt;
I am proud to announce that our project is ready for the up-comming presentation in the ETH main hall.&lt;br /&gt;
Thx a lot to all team mates and everyone who supported us. &lt;br /&gt;
&lt;br /&gt;
Your Teamleader&lt;br /&gt;
Christoph&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==M4: June 27, 2006 ==&lt;br /&gt;
&lt;br /&gt;
You can find all important files concerning the project and the presentation on [http://n.ethz.ch/student/clins/publich/eswis my page].&lt;br /&gt;
&lt;br /&gt;
=Project Details=&lt;br /&gt;
&lt;br /&gt;
== Files ==&lt;br /&gt;
&lt;br /&gt;
You can find the actual files on [http://n.ethz.ch/student/clins/public/eswiz this page].&lt;br /&gt;
&lt;br /&gt;
==Editor Based Wizard Execution==&lt;br /&gt;
&lt;br /&gt;
===Motivation===&lt;br /&gt;
&lt;br /&gt;
Wizards are usually only accessible through a GUI Window. This is convenient for beginners, but will slow down advanced programmers.&lt;br /&gt;
So there should be a possibility to access the wizard through the editor directly with an interface similar to a command line interface.&lt;br /&gt;
&lt;br /&gt;
===Idea===&lt;br /&gt;
&lt;br /&gt;
To execute the wizard within the editor you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write the command (possibly over some lines)&lt;br /&gt;
* Press a hotkey to execute the command&lt;br /&gt;
&lt;br /&gt;
Which hotkey we use is to be determined.&lt;br /&gt;
&lt;br /&gt;
The goal of the language to express the commands is to be as short and fast typeable as possible. Therefore it refrains from using charactes for which multiple keys must be pressed. As reference, the US-English and Swiss-German keyboard layout is used. &lt;br /&gt;
The slash '/' is not a one key character on the Swiss-German keyboard, so it can be substituted by '$'&lt;br /&gt;
&lt;br /&gt;
Since the command is only an intermediate format, structure and readability are not considered first priority here.&lt;br /&gt;
===Example===&lt;br /&gt;
&lt;br /&gt;
To create class TEST which is deferred you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write &amp;quot;/c test,d .&amp;quot;&lt;br /&gt;
* Press the hotkey&lt;br /&gt;
&lt;br /&gt;
Create a class COMPLEX with features real, imag, add and mult, arguments of add and mult are not void by precondition:&lt;br /&gt;
* Write&lt;br /&gt;
/c complex&amp;lt;br&amp;gt;&lt;br /&gt;
d read&amp;lt;br&amp;gt;&lt;br /&gt;
d imag&amp;lt;br&amp;gt;&lt;br /&gt;
1d add complex toadd,n&amp;lt;br&amp;gt;&lt;br /&gt;
1d mult complex tomult,n&amp;lt;br&amp;gt;&lt;br /&gt;
.&lt;br /&gt;
* press the Hotkey&lt;br /&gt;
&lt;br /&gt;
===Lexical Analysis===&lt;br /&gt;
&lt;br /&gt;
Token seperators:&lt;br /&gt;
* Whitespaces (' ','\n','\r','\t')&lt;br /&gt;
* ','&lt;br /&gt;
* '/'&lt;br /&gt;
* '$' (for Swiss-German keyboards)&lt;br /&gt;
The last three are tokens themselves, whitespaces are discarded&lt;br /&gt;
&lt;br /&gt;
Note: '.' does '''not''' seperate tokens.&lt;br /&gt;
&lt;br /&gt;
===Syntax===&lt;br /&gt;
&lt;br /&gt;
As the project is still in a starting phase, the information here is incomplete and could be changed.&lt;br /&gt;
&lt;br /&gt;
The syntax is made easy to parse, since we have not much experience with parsers. &lt;br /&gt;
&lt;br /&gt;
'##' means that the two symbols have no whitespace bewteen&lt;br /&gt;
&lt;br /&gt;
These symbols represent a stream of tokens:&lt;br /&gt;
&lt;br /&gt;
* wizardExecBlock ::= blockStartChar classCreate {featureCreate}* blockEndChar&lt;br /&gt;
* classCreate ::= [num_of_parents] ## 'c' className  [inheritance-list] [','attribute_list]&lt;br /&gt;
* inheritance-list ::= {inheritance_clause}*&lt;br /&gt;
* inhertitance_clause ::= {identifier [',' attribute_list]}+&lt;br /&gt;
* className ::= identifier&lt;br /&gt;
* featureCreate ::= [num_of_arguments] ## return_type name {argument_type argument_name}* [','attribute_list]&lt;br /&gt;
* return_type, argument_type ::= type&lt;br /&gt;
* name, argument_name ::= identifier&lt;br /&gt;
&lt;br /&gt;
These symbols represent one token:&lt;br /&gt;
&lt;br /&gt;
* blockStartChar ::= '/' | '$'&lt;br /&gt;
* blockEndChar ::= '.'&lt;br /&gt;
* type ::= {'.' attribute}* identifier [',' attribute_list]&lt;br /&gt;
* identifier ::= {letter}*&lt;br /&gt;
* attribute_list ::= {attribute}+&lt;br /&gt;
* attribute ::= letter&lt;br /&gt;
* letter ::= 'a'..'z'&lt;br /&gt;
* number ::= digit+&lt;br /&gt;
* digit ::= '0'..'9'&lt;br /&gt;
&lt;br /&gt;
===Explanation===&lt;br /&gt;
&lt;br /&gt;
*Feature creation:&lt;br /&gt;
** If num_of_arguments if not given, the feature is a attribute, otherwise it's a method.&lt;br /&gt;
** If return type is 'v'='void' then it's a procedure.&lt;br /&gt;
** Some mappings/abbreviations from heavily used types are intended. For example 'i'='integer', 's'='string', 'd'='double', 'f'='real'&lt;br /&gt;
* Class names are automatically converted to uppercase (it's easier to write all in lowercase)&lt;br /&gt;
&lt;br /&gt;
===Working on===&lt;br /&gt;
&lt;br /&gt;
* Specify how to do lexical analysis.&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [[User:Volkan|Volkan Arslan]] (Advisor) &lt;br /&gt;
* [[User:Chr1s| Christoph Lins]] (project leader, implementation)&lt;br /&gt;
* [[User:Haan| Andreas Hasler]] (implementation)&lt;br /&gt;
* [[User:Thertli| Timon Hertli]] (implementation)&lt;br /&gt;
* [[User:Pvrohr| Peter von Rohr]] (GUI)&lt;br /&gt;
* [[User:DavidFlatz| David Flatz]] (GUI)&lt;br /&gt;
* Damien Müllhaupt (GUI)&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3823</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3823"/>
				<updated>2006-06-26T21:11:06Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Files */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* Preparing the graphical interface of the feature- and class-wizard&lt;br /&gt;
* design decisions concerning GUI&lt;br /&gt;
* finding most important classes in ES that must be changed&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* Debugger is not available yet&lt;br /&gt;
* the difficulties with compiling forced us to concentrate only on merging the class- and feature-wizard&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on windows/linux-x86&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==M2: June 14, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* every team mate succeeded in compiling the newest version of ES&lt;br /&gt;
* beginning of the main work: feature- and class-wizard&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==M3: June 25, 2006 ==&lt;br /&gt;
&lt;br /&gt;
I am proud to announce that our project is ready for the up-comming presentation in the ETH main hall.&lt;br /&gt;
Thx a lot to all team mates and everyone who supported us. &lt;br /&gt;
&lt;br /&gt;
Your Teamleader&lt;br /&gt;
Christoph&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==M4: June 27, 2006 ==&lt;br /&gt;
&lt;br /&gt;
You can find all important files concerning the project and the presentation on [http://n.ethz.ch/student/clins/publich/eswis my page].&lt;br /&gt;
&lt;br /&gt;
=Project Details=&lt;br /&gt;
&lt;br /&gt;
== Files ==&lt;br /&gt;
&lt;br /&gt;
You can find the actual files on [http://n.ethz.ch/student/clins/public/eswiz this page].&lt;br /&gt;
&lt;br /&gt;
==Editor Based Wizard Execution==&lt;br /&gt;
&lt;br /&gt;
===Motivation===&lt;br /&gt;
&lt;br /&gt;
Wizards are usually only accessible through a GUI Window. This is convenient for beginners, but will slow down advanced programmers.&lt;br /&gt;
So there should be a possibility to access the wizard through the editor directly with an interface similar to a command line interface.&lt;br /&gt;
&lt;br /&gt;
===Idea===&lt;br /&gt;
&lt;br /&gt;
To execute the wizard within the editor you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write the command (possibly over some lines)&lt;br /&gt;
* Press a hotkey to execute the command&lt;br /&gt;
&lt;br /&gt;
Which hotkey we use is to be determined.&lt;br /&gt;
&lt;br /&gt;
The goal of the language to express the commands is to be as short and fast typeable as possible. Therefore it refrains from using charactes for which multiple keys must be pressed. As reference, the US-English and Swiss-German keyboard layout is used. &lt;br /&gt;
The slash '/' is not a one key character on the Swiss-German keyboard, so it can be substituted by '$'&lt;br /&gt;
&lt;br /&gt;
Since the command is only an intermediate format, structure and readability are not considered first priority here.&lt;br /&gt;
===Example===&lt;br /&gt;
&lt;br /&gt;
To create class TEST which is deferred you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write &amp;quot;/c test,d .&amp;quot;&lt;br /&gt;
* Press the hotkey&lt;br /&gt;
&lt;br /&gt;
Create a class COMPLEX with features real, imag, add and mult, arguments of add and mult are not void by precondition:&lt;br /&gt;
* Write&lt;br /&gt;
/c complex&amp;lt;br&amp;gt;&lt;br /&gt;
d read&amp;lt;br&amp;gt;&lt;br /&gt;
d imag&amp;lt;br&amp;gt;&lt;br /&gt;
1d add complex toadd,n&amp;lt;br&amp;gt;&lt;br /&gt;
1d mult complex tomult,n&amp;lt;br&amp;gt;&lt;br /&gt;
.&lt;br /&gt;
* press the Hotkey&lt;br /&gt;
&lt;br /&gt;
===Lexical Analysis===&lt;br /&gt;
&lt;br /&gt;
Token seperators:&lt;br /&gt;
* Whitespaces (' ','\n','\r','\t')&lt;br /&gt;
* ','&lt;br /&gt;
* '/'&lt;br /&gt;
* '$' (for Swiss-German keyboards)&lt;br /&gt;
The last three are tokens themselves, whitespaces are discarded&lt;br /&gt;
&lt;br /&gt;
Note: '.' does '''not''' seperate tokens.&lt;br /&gt;
&lt;br /&gt;
===Syntax===&lt;br /&gt;
&lt;br /&gt;
As the project is still in a starting phase, the information here is incomplete and could be changed.&lt;br /&gt;
&lt;br /&gt;
The syntax is made easy to parse, since we have not much experience with parsers. &lt;br /&gt;
&lt;br /&gt;
'##' means that the two symbols have no whitespace bewteen&lt;br /&gt;
&lt;br /&gt;
These symbols represent a stream of tokens:&lt;br /&gt;
&lt;br /&gt;
* wizardExecBlock ::= blockStartChar classCreate {featureCreate}* blockEndChar&lt;br /&gt;
* classCreate ::= [num_of_parents] ## 'c' className  [inheritance-list] [','attribute_list]&lt;br /&gt;
* inheritance-list ::= {inheritance_clause}*&lt;br /&gt;
* inhertitance_clause ::= {identifier [',' attribute_list]}+&lt;br /&gt;
* className ::= identifier&lt;br /&gt;
* featureCreate ::= [num_of_arguments] ## return_type name {argument_type argument_name}* [','attribute_list]&lt;br /&gt;
* return_type, argument_type ::= type&lt;br /&gt;
* name, argument_name ::= identifier&lt;br /&gt;
&lt;br /&gt;
These symbols represent one token:&lt;br /&gt;
&lt;br /&gt;
* blockStartChar ::= '/' | '$'&lt;br /&gt;
* blockEndChar ::= '.'&lt;br /&gt;
* type ::= {'.' attribute}* identifier [',' attribute_list]&lt;br /&gt;
* identifier ::= {letter}*&lt;br /&gt;
* attribute_list ::= {attribute}+&lt;br /&gt;
* attribute ::= letter&lt;br /&gt;
* letter ::= 'a'..'z'&lt;br /&gt;
* number ::= digit+&lt;br /&gt;
* digit ::= '0'..'9'&lt;br /&gt;
&lt;br /&gt;
===Explanation===&lt;br /&gt;
&lt;br /&gt;
*Feature creation:&lt;br /&gt;
** If num_of_arguments if not given, the feature is a attribute, otherwise it's a method.&lt;br /&gt;
** If return type is 'v'='void' then it's a procedure.&lt;br /&gt;
** Some mappings/abbreviations from heavily used types are intended. For example 'i'='integer', 's'='string', 'd'='double', 'f'='real'&lt;br /&gt;
* Class names are automatically converted to uppercase (it's easier to write all in lowercase)&lt;br /&gt;
&lt;br /&gt;
===Working on===&lt;br /&gt;
&lt;br /&gt;
* Specify how to do lexical analysis.&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [[User:Volkan|Volkan Arslan]] (Advisor) &lt;br /&gt;
* [[User:Chr1s| Christoph Lins]] (project leader, implementation)&lt;br /&gt;
* [[User:Haan| Andreas Hasler]] (implementation)&lt;br /&gt;
* [[User:Thertli| Timon Hertli]] (implementation)&lt;br /&gt;
* [[User:Pvrohr| Peter von Rohr]] (GUI)&lt;br /&gt;
* [[User:DavidFlatz| David Flatz]] (GUI)&lt;br /&gt;
* Damien Müllhaupt (GUI)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
if you have questions or constructive criticism concerning our project and this wiki-page then write an Email to the project leader or just join our mailinglist: &lt;br /&gt;
&lt;br /&gt;
es-wiz 'at' origo '.' ethz '.' ch&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3822</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3822"/>
				<updated>2006-06-26T21:10:22Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Project Details */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* Preparing the graphical interface of the feature- and class-wizard&lt;br /&gt;
* design decisions concerning GUI&lt;br /&gt;
* finding most important classes in ES that must be changed&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* Debugger is not available yet&lt;br /&gt;
* the difficulties with compiling forced us to concentrate only on merging the class- and feature-wizard&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on windows/linux-x86&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==M2: June 14, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* every team mate succeeded in compiling the newest version of ES&lt;br /&gt;
* beginning of the main work: feature- and class-wizard&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==M3: June 25, 2006 ==&lt;br /&gt;
&lt;br /&gt;
I am proud to announce that our project is ready for the up-comming presentation in the ETH main hall.&lt;br /&gt;
Thx a lot to all team mates and everyone who supported us. &lt;br /&gt;
&lt;br /&gt;
Your Teamleader&lt;br /&gt;
Christoph&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==M4: June 27, 2006 ==&lt;br /&gt;
&lt;br /&gt;
You can find all important files concerning the project and the presentation on [http://n.ethz.ch/student/clins/publich/eswis my page].&lt;br /&gt;
&lt;br /&gt;
=Project Details=&lt;br /&gt;
&lt;br /&gt;
== Files ==&lt;br /&gt;
&lt;br /&gt;
You can find the actual files on [http://www.example.com this page].&lt;br /&gt;
&lt;br /&gt;
==Editor Based Wizard Execution==&lt;br /&gt;
&lt;br /&gt;
===Motivation===&lt;br /&gt;
&lt;br /&gt;
Wizards are usually only accessible through a GUI Window. This is convenient for beginners, but will slow down advanced programmers.&lt;br /&gt;
So there should be a possibility to access the wizard through the editor directly with an interface similar to a command line interface.&lt;br /&gt;
&lt;br /&gt;
===Idea===&lt;br /&gt;
&lt;br /&gt;
To execute the wizard within the editor you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write the command (possibly over some lines)&lt;br /&gt;
* Press a hotkey to execute the command&lt;br /&gt;
&lt;br /&gt;
Which hotkey we use is to be determined.&lt;br /&gt;
&lt;br /&gt;
The goal of the language to express the commands is to be as short and fast typeable as possible. Therefore it refrains from using charactes for which multiple keys must be pressed. As reference, the US-English and Swiss-German keyboard layout is used. &lt;br /&gt;
The slash '/' is not a one key character on the Swiss-German keyboard, so it can be substituted by '$'&lt;br /&gt;
&lt;br /&gt;
Since the command is only an intermediate format, structure and readability are not considered first priority here.&lt;br /&gt;
===Example===&lt;br /&gt;
&lt;br /&gt;
To create class TEST which is deferred you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write &amp;quot;/c test,d .&amp;quot;&lt;br /&gt;
* Press the hotkey&lt;br /&gt;
&lt;br /&gt;
Create a class COMPLEX with features real, imag, add and mult, arguments of add and mult are not void by precondition:&lt;br /&gt;
* Write&lt;br /&gt;
/c complex&amp;lt;br&amp;gt;&lt;br /&gt;
d read&amp;lt;br&amp;gt;&lt;br /&gt;
d imag&amp;lt;br&amp;gt;&lt;br /&gt;
1d add complex toadd,n&amp;lt;br&amp;gt;&lt;br /&gt;
1d mult complex tomult,n&amp;lt;br&amp;gt;&lt;br /&gt;
.&lt;br /&gt;
* press the Hotkey&lt;br /&gt;
&lt;br /&gt;
===Lexical Analysis===&lt;br /&gt;
&lt;br /&gt;
Token seperators:&lt;br /&gt;
* Whitespaces (' ','\n','\r','\t')&lt;br /&gt;
* ','&lt;br /&gt;
* '/'&lt;br /&gt;
* '$' (for Swiss-German keyboards)&lt;br /&gt;
The last three are tokens themselves, whitespaces are discarded&lt;br /&gt;
&lt;br /&gt;
Note: '.' does '''not''' seperate tokens.&lt;br /&gt;
&lt;br /&gt;
===Syntax===&lt;br /&gt;
&lt;br /&gt;
As the project is still in a starting phase, the information here is incomplete and could be changed.&lt;br /&gt;
&lt;br /&gt;
The syntax is made easy to parse, since we have not much experience with parsers. &lt;br /&gt;
&lt;br /&gt;
'##' means that the two symbols have no whitespace bewteen&lt;br /&gt;
&lt;br /&gt;
These symbols represent a stream of tokens:&lt;br /&gt;
&lt;br /&gt;
* wizardExecBlock ::= blockStartChar classCreate {featureCreate}* blockEndChar&lt;br /&gt;
* classCreate ::= [num_of_parents] ## 'c' className  [inheritance-list] [','attribute_list]&lt;br /&gt;
* inheritance-list ::= {inheritance_clause}*&lt;br /&gt;
* inhertitance_clause ::= {identifier [',' attribute_list]}+&lt;br /&gt;
* className ::= identifier&lt;br /&gt;
* featureCreate ::= [num_of_arguments] ## return_type name {argument_type argument_name}* [','attribute_list]&lt;br /&gt;
* return_type, argument_type ::= type&lt;br /&gt;
* name, argument_name ::= identifier&lt;br /&gt;
&lt;br /&gt;
These symbols represent one token:&lt;br /&gt;
&lt;br /&gt;
* blockStartChar ::= '/' | '$'&lt;br /&gt;
* blockEndChar ::= '.'&lt;br /&gt;
* type ::= {'.' attribute}* identifier [',' attribute_list]&lt;br /&gt;
* identifier ::= {letter}*&lt;br /&gt;
* attribute_list ::= {attribute}+&lt;br /&gt;
* attribute ::= letter&lt;br /&gt;
* letter ::= 'a'..'z'&lt;br /&gt;
* number ::= digit+&lt;br /&gt;
* digit ::= '0'..'9'&lt;br /&gt;
&lt;br /&gt;
===Explanation===&lt;br /&gt;
&lt;br /&gt;
*Feature creation:&lt;br /&gt;
** If num_of_arguments if not given, the feature is a attribute, otherwise it's a method.&lt;br /&gt;
** If return type is 'v'='void' then it's a procedure.&lt;br /&gt;
** Some mappings/abbreviations from heavily used types are intended. For example 'i'='integer', 's'='string', 'd'='double', 'f'='real'&lt;br /&gt;
* Class names are automatically converted to uppercase (it's easier to write all in lowercase)&lt;br /&gt;
&lt;br /&gt;
===Working on===&lt;br /&gt;
&lt;br /&gt;
* Specify how to do lexical analysis.&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [[User:Volkan|Volkan Arslan]] (Advisor) &lt;br /&gt;
* [[User:Chr1s| Christoph Lins]] (project leader, implementation)&lt;br /&gt;
* [[User:Haan| Andreas Hasler]] (implementation)&lt;br /&gt;
* [[User:Thertli| Timon Hertli]] (implementation)&lt;br /&gt;
* [[User:Pvrohr| Peter von Rohr]] (GUI)&lt;br /&gt;
* [[User:DavidFlatz| David Flatz]] (GUI)&lt;br /&gt;
* Damien Müllhaupt (GUI)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
if you have questions or constructive criticism concerning our project and this wiki-page then write an Email to the project leader or just join our mailinglist: &lt;br /&gt;
&lt;br /&gt;
es-wiz 'at' origo '.' ethz '.' ch&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3821</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3821"/>
				<updated>2006-06-26T21:08:21Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Milestones */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* Preparing the graphical interface of the feature- and class-wizard&lt;br /&gt;
* design decisions concerning GUI&lt;br /&gt;
* finding most important classes in ES that must be changed&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* Debugger is not available yet&lt;br /&gt;
* the difficulties with compiling forced us to concentrate only on merging the class- and feature-wizard&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on windows/linux-x86&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==M2: June 14, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* every team mate succeeded in compiling the newest version of ES&lt;br /&gt;
* beginning of the main work: feature- and class-wizard&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==M3: June 25, 2006 ==&lt;br /&gt;
&lt;br /&gt;
I am proud to announce that our project is ready for the up-comming presentation in the ETH main hall.&lt;br /&gt;
Thx a lot to all team mates and everyone who supported us. &lt;br /&gt;
&lt;br /&gt;
Your Teamleader&lt;br /&gt;
Christoph&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==M4: June 27, 2006 ==&lt;br /&gt;
&lt;br /&gt;
You can find all important files concerning the project and the presentation on [http://n.ethz.ch/student/clins/publich/eswis my page].&lt;br /&gt;
&lt;br /&gt;
=Project Details=&lt;br /&gt;
&lt;br /&gt;
==Editor Based Wizard Execution==&lt;br /&gt;
&lt;br /&gt;
===Motivation===&lt;br /&gt;
&lt;br /&gt;
Wizards are usually only accessible through a GUI Window. This is convenient for beginners, but will slow down advanced programmers.&lt;br /&gt;
So there should be a possibility to access the wizard through the editor directly with an interface similar to a command line interface.&lt;br /&gt;
&lt;br /&gt;
===Idea===&lt;br /&gt;
&lt;br /&gt;
To execute the wizard within the editor you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write the command (possibly over some lines)&lt;br /&gt;
* Press a hotkey to execute the command&lt;br /&gt;
&lt;br /&gt;
Which hotkey we use is to be determined.&lt;br /&gt;
&lt;br /&gt;
The goal of the language to express the commands is to be as short and fast typeable as possible. Therefore it refrains from using charactes for which multiple keys must be pressed. As reference, the US-English and Swiss-German keyboard layout is used. &lt;br /&gt;
The slash '/' is not a one key character on the Swiss-German keyboard, so it can be substituted by '$'&lt;br /&gt;
&lt;br /&gt;
Since the command is only an intermediate format, structure and readability are not considered first priority here.&lt;br /&gt;
===Example===&lt;br /&gt;
&lt;br /&gt;
To create class TEST which is deferred you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write &amp;quot;/c test,d .&amp;quot;&lt;br /&gt;
* Press the hotkey&lt;br /&gt;
&lt;br /&gt;
Create a class COMPLEX with features real, imag, add and mult, arguments of add and mult are not void by precondition:&lt;br /&gt;
* Write&lt;br /&gt;
/c complex&amp;lt;br&amp;gt;&lt;br /&gt;
d read&amp;lt;br&amp;gt;&lt;br /&gt;
d imag&amp;lt;br&amp;gt;&lt;br /&gt;
1d add complex toadd,n&amp;lt;br&amp;gt;&lt;br /&gt;
1d mult complex tomult,n&amp;lt;br&amp;gt;&lt;br /&gt;
.&lt;br /&gt;
* press the Hotkey&lt;br /&gt;
&lt;br /&gt;
===Lexical Analysis===&lt;br /&gt;
&lt;br /&gt;
Token seperators:&lt;br /&gt;
* Whitespaces (' ','\n','\r','\t')&lt;br /&gt;
* ','&lt;br /&gt;
* '/'&lt;br /&gt;
* '$' (for Swiss-German keyboards)&lt;br /&gt;
The last three are tokens themselves, whitespaces are discarded&lt;br /&gt;
&lt;br /&gt;
Note: '.' does '''not''' seperate tokens.&lt;br /&gt;
&lt;br /&gt;
===Syntax===&lt;br /&gt;
&lt;br /&gt;
As the project is still in a starting phase, the information here is incomplete and could be changed.&lt;br /&gt;
&lt;br /&gt;
The syntax is made easy to parse, since we have not much experience with parsers. &lt;br /&gt;
&lt;br /&gt;
'##' means that the two symbols have no whitespace bewteen&lt;br /&gt;
&lt;br /&gt;
These symbols represent a stream of tokens:&lt;br /&gt;
&lt;br /&gt;
* wizardExecBlock ::= blockStartChar classCreate {featureCreate}* blockEndChar&lt;br /&gt;
* classCreate ::= [num_of_parents] ## 'c' className  [inheritance-list] [','attribute_list]&lt;br /&gt;
* inheritance-list ::= {inheritance_clause}*&lt;br /&gt;
* inhertitance_clause ::= {identifier [',' attribute_list]}+&lt;br /&gt;
* className ::= identifier&lt;br /&gt;
* featureCreate ::= [num_of_arguments] ## return_type name {argument_type argument_name}* [','attribute_list]&lt;br /&gt;
* return_type, argument_type ::= type&lt;br /&gt;
* name, argument_name ::= identifier&lt;br /&gt;
&lt;br /&gt;
These symbols represent one token:&lt;br /&gt;
&lt;br /&gt;
* blockStartChar ::= '/' | '$'&lt;br /&gt;
* blockEndChar ::= '.'&lt;br /&gt;
* type ::= {'.' attribute}* identifier [',' attribute_list]&lt;br /&gt;
* identifier ::= {letter}*&lt;br /&gt;
* attribute_list ::= {attribute}+&lt;br /&gt;
* attribute ::= letter&lt;br /&gt;
* letter ::= 'a'..'z'&lt;br /&gt;
* number ::= digit+&lt;br /&gt;
* digit ::= '0'..'9'&lt;br /&gt;
&lt;br /&gt;
===Explanation===&lt;br /&gt;
&lt;br /&gt;
*Feature creation:&lt;br /&gt;
** If num_of_arguments if not given, the feature is a attribute, otherwise it's a method.&lt;br /&gt;
** If return type is 'v'='void' then it's a procedure.&lt;br /&gt;
** Some mappings/abbreviations from heavily used types are intended. For example 'i'='integer', 's'='string', 'd'='double', 'f'='real'&lt;br /&gt;
* Class names are automatically converted to uppercase (it's easier to write all in lowercase)&lt;br /&gt;
&lt;br /&gt;
===Working on===&lt;br /&gt;
&lt;br /&gt;
* Specify how to do lexical analysis.&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [[User:Volkan|Volkan Arslan]] (Advisor) &lt;br /&gt;
* [[User:Chr1s| Christoph Lins]] (project leader, implementation)&lt;br /&gt;
* [[User:Haan| Andreas Hasler]] (implementation)&lt;br /&gt;
* [[User:Thertli| Timon Hertli]] (implementation)&lt;br /&gt;
* [[User:Pvrohr| Peter von Rohr]] (GUI)&lt;br /&gt;
* [[User:DavidFlatz| David Flatz]] (GUI)&lt;br /&gt;
* Damien Müllhaupt (GUI)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
if you have questions or constructive criticism concerning our project and this wiki-page then write an Email to the project leader or just join our mailinglist: &lt;br /&gt;
&lt;br /&gt;
es-wiz 'at' origo '.' ethz '.' ch&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3820</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3820"/>
				<updated>2006-06-26T21:08:01Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* M4: June 27, 2006 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* Preparing the graphical interface of the feature- and class-wizard&lt;br /&gt;
* design decisions concerning GUI&lt;br /&gt;
* finding most important classes in ES that must be changed&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* Debugger is not available yet&lt;br /&gt;
* the difficulties with compiling forced us to concentrate only on merging the class- and feature-wizard&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on windows/linux-x86&lt;br /&gt;
&lt;br /&gt;
==M2: June 14, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* every team mate succeeded in compiling the newest version of ES&lt;br /&gt;
* beginning of the main work: feature- and class-wizard&lt;br /&gt;
&lt;br /&gt;
==M3: June 25, 2006 ==&lt;br /&gt;
&lt;br /&gt;
I am proud to announce that our project is ready for the up-comming presentation in the ETH main hall.&lt;br /&gt;
Thx a lot to all team mates and everyone who supported us. &lt;br /&gt;
&lt;br /&gt;
Your Teamleader&lt;br /&gt;
Christoph&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==M4: June 27, 2006 ==&lt;br /&gt;
&lt;br /&gt;
You can find all important files concerning the project and the presentation on [http://n.ethz.ch/student/clins/publich/eswis my page].&lt;br /&gt;
&lt;br /&gt;
=Project Details=&lt;br /&gt;
&lt;br /&gt;
==Editor Based Wizard Execution==&lt;br /&gt;
&lt;br /&gt;
===Motivation===&lt;br /&gt;
&lt;br /&gt;
Wizards are usually only accessible through a GUI Window. This is convenient for beginners, but will slow down advanced programmers.&lt;br /&gt;
So there should be a possibility to access the wizard through the editor directly with an interface similar to a command line interface.&lt;br /&gt;
&lt;br /&gt;
===Idea===&lt;br /&gt;
&lt;br /&gt;
To execute the wizard within the editor you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write the command (possibly over some lines)&lt;br /&gt;
* Press a hotkey to execute the command&lt;br /&gt;
&lt;br /&gt;
Which hotkey we use is to be determined.&lt;br /&gt;
&lt;br /&gt;
The goal of the language to express the commands is to be as short and fast typeable as possible. Therefore it refrains from using charactes for which multiple keys must be pressed. As reference, the US-English and Swiss-German keyboard layout is used. &lt;br /&gt;
The slash '/' is not a one key character on the Swiss-German keyboard, so it can be substituted by '$'&lt;br /&gt;
&lt;br /&gt;
Since the command is only an intermediate format, structure and readability are not considered first priority here.&lt;br /&gt;
===Example===&lt;br /&gt;
&lt;br /&gt;
To create class TEST which is deferred you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write &amp;quot;/c test,d .&amp;quot;&lt;br /&gt;
* Press the hotkey&lt;br /&gt;
&lt;br /&gt;
Create a class COMPLEX with features real, imag, add and mult, arguments of add and mult are not void by precondition:&lt;br /&gt;
* Write&lt;br /&gt;
/c complex&amp;lt;br&amp;gt;&lt;br /&gt;
d read&amp;lt;br&amp;gt;&lt;br /&gt;
d imag&amp;lt;br&amp;gt;&lt;br /&gt;
1d add complex toadd,n&amp;lt;br&amp;gt;&lt;br /&gt;
1d mult complex tomult,n&amp;lt;br&amp;gt;&lt;br /&gt;
.&lt;br /&gt;
* press the Hotkey&lt;br /&gt;
&lt;br /&gt;
===Lexical Analysis===&lt;br /&gt;
&lt;br /&gt;
Token seperators:&lt;br /&gt;
* Whitespaces (' ','\n','\r','\t')&lt;br /&gt;
* ','&lt;br /&gt;
* '/'&lt;br /&gt;
* '$' (for Swiss-German keyboards)&lt;br /&gt;
The last three are tokens themselves, whitespaces are discarded&lt;br /&gt;
&lt;br /&gt;
Note: '.' does '''not''' seperate tokens.&lt;br /&gt;
&lt;br /&gt;
===Syntax===&lt;br /&gt;
&lt;br /&gt;
As the project is still in a starting phase, the information here is incomplete and could be changed.&lt;br /&gt;
&lt;br /&gt;
The syntax is made easy to parse, since we have not much experience with parsers. &lt;br /&gt;
&lt;br /&gt;
'##' means that the two symbols have no whitespace bewteen&lt;br /&gt;
&lt;br /&gt;
These symbols represent a stream of tokens:&lt;br /&gt;
&lt;br /&gt;
* wizardExecBlock ::= blockStartChar classCreate {featureCreate}* blockEndChar&lt;br /&gt;
* classCreate ::= [num_of_parents] ## 'c' className  [inheritance-list] [','attribute_list]&lt;br /&gt;
* inheritance-list ::= {inheritance_clause}*&lt;br /&gt;
* inhertitance_clause ::= {identifier [',' attribute_list]}+&lt;br /&gt;
* className ::= identifier&lt;br /&gt;
* featureCreate ::= [num_of_arguments] ## return_type name {argument_type argument_name}* [','attribute_list]&lt;br /&gt;
* return_type, argument_type ::= type&lt;br /&gt;
* name, argument_name ::= identifier&lt;br /&gt;
&lt;br /&gt;
These symbols represent one token:&lt;br /&gt;
&lt;br /&gt;
* blockStartChar ::= '/' | '$'&lt;br /&gt;
* blockEndChar ::= '.'&lt;br /&gt;
* type ::= {'.' attribute}* identifier [',' attribute_list]&lt;br /&gt;
* identifier ::= {letter}*&lt;br /&gt;
* attribute_list ::= {attribute}+&lt;br /&gt;
* attribute ::= letter&lt;br /&gt;
* letter ::= 'a'..'z'&lt;br /&gt;
* number ::= digit+&lt;br /&gt;
* digit ::= '0'..'9'&lt;br /&gt;
&lt;br /&gt;
===Explanation===&lt;br /&gt;
&lt;br /&gt;
*Feature creation:&lt;br /&gt;
** If num_of_arguments if not given, the feature is a attribute, otherwise it's a method.&lt;br /&gt;
** If return type is 'v'='void' then it's a procedure.&lt;br /&gt;
** Some mappings/abbreviations from heavily used types are intended. For example 'i'='integer', 's'='string', 'd'='double', 'f'='real'&lt;br /&gt;
* Class names are automatically converted to uppercase (it's easier to write all in lowercase)&lt;br /&gt;
&lt;br /&gt;
===Working on===&lt;br /&gt;
&lt;br /&gt;
* Specify how to do lexical analysis.&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [[User:Volkan|Volkan Arslan]] (Advisor) &lt;br /&gt;
* [[User:Chr1s| Christoph Lins]] (project leader, implementation)&lt;br /&gt;
* [[User:Haan| Andreas Hasler]] (implementation)&lt;br /&gt;
* [[User:Thertli| Timon Hertli]] (implementation)&lt;br /&gt;
* [[User:Pvrohr| Peter von Rohr]] (GUI)&lt;br /&gt;
* [[User:DavidFlatz| David Flatz]] (GUI)&lt;br /&gt;
* Damien Müllhaupt (GUI)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
if you have questions or constructive criticism concerning our project and this wiki-page then write an Email to the project leader or just join our mailinglist: &lt;br /&gt;
&lt;br /&gt;
es-wiz 'at' origo '.' ethz '.' ch&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3819</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3819"/>
				<updated>2006-06-26T21:07:45Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Milestones */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* Preparing the graphical interface of the feature- and class-wizard&lt;br /&gt;
* design decisions concerning GUI&lt;br /&gt;
* finding most important classes in ES that must be changed&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* Debugger is not available yet&lt;br /&gt;
* the difficulties with compiling forced us to concentrate only on merging the class- and feature-wizard&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on windows/linux-x86&lt;br /&gt;
&lt;br /&gt;
==M2: June 14, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* every team mate succeeded in compiling the newest version of ES&lt;br /&gt;
* beginning of the main work: feature- and class-wizard&lt;br /&gt;
&lt;br /&gt;
==M3: June 25, 2006 ==&lt;br /&gt;
&lt;br /&gt;
I am proud to announce that our project is ready for the up-comming presentation in the ETH main hall.&lt;br /&gt;
Thx a lot to all team mates and everyone who supported us. &lt;br /&gt;
&lt;br /&gt;
Your Teamleader&lt;br /&gt;
Christoph&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==M4: June 27, 2006 ==&lt;br /&gt;
&lt;br /&gt;
You can find all important files concerning the project and the presentation on [http://n.ethz.ch/student/clins/publich/eswis link my page].&lt;br /&gt;
&lt;br /&gt;
=Project Details=&lt;br /&gt;
&lt;br /&gt;
==Editor Based Wizard Execution==&lt;br /&gt;
&lt;br /&gt;
===Motivation===&lt;br /&gt;
&lt;br /&gt;
Wizards are usually only accessible through a GUI Window. This is convenient for beginners, but will slow down advanced programmers.&lt;br /&gt;
So there should be a possibility to access the wizard through the editor directly with an interface similar to a command line interface.&lt;br /&gt;
&lt;br /&gt;
===Idea===&lt;br /&gt;
&lt;br /&gt;
To execute the wizard within the editor you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write the command (possibly over some lines)&lt;br /&gt;
* Press a hotkey to execute the command&lt;br /&gt;
&lt;br /&gt;
Which hotkey we use is to be determined.&lt;br /&gt;
&lt;br /&gt;
The goal of the language to express the commands is to be as short and fast typeable as possible. Therefore it refrains from using charactes for which multiple keys must be pressed. As reference, the US-English and Swiss-German keyboard layout is used. &lt;br /&gt;
The slash '/' is not a one key character on the Swiss-German keyboard, so it can be substituted by '$'&lt;br /&gt;
&lt;br /&gt;
Since the command is only an intermediate format, structure and readability are not considered first priority here.&lt;br /&gt;
===Example===&lt;br /&gt;
&lt;br /&gt;
To create class TEST which is deferred you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write &amp;quot;/c test,d .&amp;quot;&lt;br /&gt;
* Press the hotkey&lt;br /&gt;
&lt;br /&gt;
Create a class COMPLEX with features real, imag, add and mult, arguments of add and mult are not void by precondition:&lt;br /&gt;
* Write&lt;br /&gt;
/c complex&amp;lt;br&amp;gt;&lt;br /&gt;
d read&amp;lt;br&amp;gt;&lt;br /&gt;
d imag&amp;lt;br&amp;gt;&lt;br /&gt;
1d add complex toadd,n&amp;lt;br&amp;gt;&lt;br /&gt;
1d mult complex tomult,n&amp;lt;br&amp;gt;&lt;br /&gt;
.&lt;br /&gt;
* press the Hotkey&lt;br /&gt;
&lt;br /&gt;
===Lexical Analysis===&lt;br /&gt;
&lt;br /&gt;
Token seperators:&lt;br /&gt;
* Whitespaces (' ','\n','\r','\t')&lt;br /&gt;
* ','&lt;br /&gt;
* '/'&lt;br /&gt;
* '$' (for Swiss-German keyboards)&lt;br /&gt;
The last three are tokens themselves, whitespaces are discarded&lt;br /&gt;
&lt;br /&gt;
Note: '.' does '''not''' seperate tokens.&lt;br /&gt;
&lt;br /&gt;
===Syntax===&lt;br /&gt;
&lt;br /&gt;
As the project is still in a starting phase, the information here is incomplete and could be changed.&lt;br /&gt;
&lt;br /&gt;
The syntax is made easy to parse, since we have not much experience with parsers. &lt;br /&gt;
&lt;br /&gt;
'##' means that the two symbols have no whitespace bewteen&lt;br /&gt;
&lt;br /&gt;
These symbols represent a stream of tokens:&lt;br /&gt;
&lt;br /&gt;
* wizardExecBlock ::= blockStartChar classCreate {featureCreate}* blockEndChar&lt;br /&gt;
* classCreate ::= [num_of_parents] ## 'c' className  [inheritance-list] [','attribute_list]&lt;br /&gt;
* inheritance-list ::= {inheritance_clause}*&lt;br /&gt;
* inhertitance_clause ::= {identifier [',' attribute_list]}+&lt;br /&gt;
* className ::= identifier&lt;br /&gt;
* featureCreate ::= [num_of_arguments] ## return_type name {argument_type argument_name}* [','attribute_list]&lt;br /&gt;
* return_type, argument_type ::= type&lt;br /&gt;
* name, argument_name ::= identifier&lt;br /&gt;
&lt;br /&gt;
These symbols represent one token:&lt;br /&gt;
&lt;br /&gt;
* blockStartChar ::= '/' | '$'&lt;br /&gt;
* blockEndChar ::= '.'&lt;br /&gt;
* type ::= {'.' attribute}* identifier [',' attribute_list]&lt;br /&gt;
* identifier ::= {letter}*&lt;br /&gt;
* attribute_list ::= {attribute}+&lt;br /&gt;
* attribute ::= letter&lt;br /&gt;
* letter ::= 'a'..'z'&lt;br /&gt;
* number ::= digit+&lt;br /&gt;
* digit ::= '0'..'9'&lt;br /&gt;
&lt;br /&gt;
===Explanation===&lt;br /&gt;
&lt;br /&gt;
*Feature creation:&lt;br /&gt;
** If num_of_arguments if not given, the feature is a attribute, otherwise it's a method.&lt;br /&gt;
** If return type is 'v'='void' then it's a procedure.&lt;br /&gt;
** Some mappings/abbreviations from heavily used types are intended. For example 'i'='integer', 's'='string', 'd'='double', 'f'='real'&lt;br /&gt;
* Class names are automatically converted to uppercase (it's easier to write all in lowercase)&lt;br /&gt;
&lt;br /&gt;
===Working on===&lt;br /&gt;
&lt;br /&gt;
* Specify how to do lexical analysis.&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [[User:Volkan|Volkan Arslan]] (Advisor) &lt;br /&gt;
* [[User:Chr1s| Christoph Lins]] (project leader, implementation)&lt;br /&gt;
* [[User:Haan| Andreas Hasler]] (implementation)&lt;br /&gt;
* [[User:Thertli| Timon Hertli]] (implementation)&lt;br /&gt;
* [[User:Pvrohr| Peter von Rohr]] (GUI)&lt;br /&gt;
* [[User:DavidFlatz| David Flatz]] (GUI)&lt;br /&gt;
* Damien Müllhaupt (GUI)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
if you have questions or constructive criticism concerning our project and this wiki-page then write an Email to the project leader or just join our mailinglist: &lt;br /&gt;
&lt;br /&gt;
es-wiz 'at' origo '.' ethz '.' ch&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3766</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3766"/>
				<updated>2006-06-25T09:35:30Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Milestones */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* Preparing the graphical interface of the feature- and class-wizard&lt;br /&gt;
* design decisions concerning GUI&lt;br /&gt;
* finding most important classes in ES that must be changed&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* Debugger is not available yet&lt;br /&gt;
* the difficulties with compiling forced us to concentrate only on merging the class- and feature-wizard&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on windows/linux-x86&lt;br /&gt;
&lt;br /&gt;
==M2: June 14, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* every team mate succeeded in compiling the newest version of ES&lt;br /&gt;
* beginning of the main work: feature- and class-wizard&lt;br /&gt;
&lt;br /&gt;
==M3: June 25, 2006 ==&lt;br /&gt;
&lt;br /&gt;
I am proud to announce that our project is ready for the up-comming presentation in the ETH main hall.&lt;br /&gt;
Thx a lot to all team mates and everyone who supported us. &lt;br /&gt;
&lt;br /&gt;
Your Teamleader&lt;br /&gt;
Christoph&lt;br /&gt;
&lt;br /&gt;
=Project Details=&lt;br /&gt;
&lt;br /&gt;
==Editor Based Wizard Execution==&lt;br /&gt;
&lt;br /&gt;
===Motivation===&lt;br /&gt;
&lt;br /&gt;
Wizards are usually only accessible through a GUI Window. This is convenient for beginners, but will slow down advanced programmers.&lt;br /&gt;
So there should be a possibility to access the wizard through the editor directly with an interface similar to a command line interface.&lt;br /&gt;
&lt;br /&gt;
===Idea===&lt;br /&gt;
&lt;br /&gt;
To execute the wizard within the editor you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write the command (possibly over some lines)&lt;br /&gt;
* Press a hotkey to execute the command&lt;br /&gt;
&lt;br /&gt;
Which hotkey we use is to be determined.&lt;br /&gt;
&lt;br /&gt;
The goal of the language to express the commands is to be as short and fast typeable as possible. Therefore it refrains from using charactes for which multiple keys must be pressed. As reference, the US-English and Swiss-German keyboard layout is used. &lt;br /&gt;
The slash '/' is not a one key character on the Swiss-German keyboard, so it can be substituted by '$'&lt;br /&gt;
&lt;br /&gt;
Since the command is only an intermediate format, structure and readability are not considered first priority here.&lt;br /&gt;
===Example===&lt;br /&gt;
&lt;br /&gt;
To create class TEST which is deferred you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write &amp;quot;/c test,d .&amp;quot;&lt;br /&gt;
* Press the hotkey&lt;br /&gt;
&lt;br /&gt;
Create a class COMPLEX with features real, imag, add and mult, arguments of add and mult are not void by precondition:&lt;br /&gt;
* Write&lt;br /&gt;
/c complex&amp;lt;br&amp;gt;&lt;br /&gt;
d read&amp;lt;br&amp;gt;&lt;br /&gt;
d imag&amp;lt;br&amp;gt;&lt;br /&gt;
1d add complex toadd,n&amp;lt;br&amp;gt;&lt;br /&gt;
1d mult complex tomult,n&amp;lt;br&amp;gt;&lt;br /&gt;
.&lt;br /&gt;
* press the Hotkey&lt;br /&gt;
&lt;br /&gt;
===Lexical Analysis===&lt;br /&gt;
&lt;br /&gt;
Token seperators:&lt;br /&gt;
* Whitespaces (' ','\n','\r','\t')&lt;br /&gt;
* ','&lt;br /&gt;
* '/'&lt;br /&gt;
* '$' (for Swiss-German keyboards)&lt;br /&gt;
The last three are tokens themselves, whitespaces are discarded&lt;br /&gt;
&lt;br /&gt;
Note: '.' does '''not''' seperate tokens.&lt;br /&gt;
&lt;br /&gt;
===Syntax===&lt;br /&gt;
&lt;br /&gt;
As the project is still in a starting phase, the information here is incomplete and could be changed.&lt;br /&gt;
&lt;br /&gt;
The syntax is made easy to parse, since we have not much experience with parsers. &lt;br /&gt;
&lt;br /&gt;
'##' means that the two symbols have no whitespace bewteen&lt;br /&gt;
&lt;br /&gt;
These symbols represent a stream of tokens:&lt;br /&gt;
&lt;br /&gt;
* wizardExecBlock ::= blockStartChar classCreate {featureCreate}* blockEndChar&lt;br /&gt;
* classCreate ::= [num_of_parents] ## 'c' className  [inheritance-list] [','attribute_list]&lt;br /&gt;
* inheritance-list ::= {inheritance_clause}*&lt;br /&gt;
* inhertitance_clause ::= {identifier [',' attribute_list]}+&lt;br /&gt;
* className ::= identifier&lt;br /&gt;
* featureCreate ::= [num_of_arguments] ## return_type name {argument_type argument_name}* [','attribute_list]&lt;br /&gt;
* return_type, argument_type ::= type&lt;br /&gt;
* name, argument_name ::= identifier&lt;br /&gt;
&lt;br /&gt;
These symbols represent one token:&lt;br /&gt;
&lt;br /&gt;
* blockStartChar ::= '/' | '$'&lt;br /&gt;
* blockEndChar ::= '.'&lt;br /&gt;
* type ::= {'.' attribute}* identifier [',' attribute_list]&lt;br /&gt;
* identifier ::= {letter}*&lt;br /&gt;
* attribute_list ::= {attribute}+&lt;br /&gt;
* attribute ::= letter&lt;br /&gt;
* letter ::= 'a'..'z'&lt;br /&gt;
* number ::= digit+&lt;br /&gt;
* digit ::= '0'..'9'&lt;br /&gt;
&lt;br /&gt;
===Explanation===&lt;br /&gt;
&lt;br /&gt;
*Feature creation:&lt;br /&gt;
** If num_of_arguments if not given, the feature is a attribute, otherwise it's a method.&lt;br /&gt;
** If return type is 'v'='void' then it's a procedure.&lt;br /&gt;
** Some mappings/abbreviations from heavily used types are intended. For example 'i'='integer', 's'='string', 'd'='double', 'f'='real'&lt;br /&gt;
* Class names are automatically converted to uppercase (it's easier to write all in lowercase)&lt;br /&gt;
&lt;br /&gt;
===Working on===&lt;br /&gt;
&lt;br /&gt;
* Specify how to do lexical analysis.&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [[User:Volkan|Volkan Arslan]] (Advisor) &lt;br /&gt;
* [[User:Chr1s| Christoph Lins]] (project leader, implementation)&lt;br /&gt;
* [[User:Haan| Andreas Hasler]] (implementation)&lt;br /&gt;
* [[User:Thertli| Timon Hertli]] (implementation)&lt;br /&gt;
* [[User:Pvrohr| Peter von Rohr]] (GUI)&lt;br /&gt;
* [[User:DavidFlatz| David Flatz]] (GUI)&lt;br /&gt;
* Damien Müllhaupt (GUI)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
if you have questions or constructive criticism concerning our project and this wiki-page then write an Email to the project leader or just join our mailinglist: &lt;br /&gt;
&lt;br /&gt;
es-wiz 'at' origo '.' ethz '.' ch&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3463</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3463"/>
				<updated>2006-06-14T20:55:45Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Team */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* Preparing the graphical interface of the feature- and class-wizard&lt;br /&gt;
* design decisions concerning GUI&lt;br /&gt;
* finding most important classes in ES that must be changed&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* Debugger is not available yet&lt;br /&gt;
* the difficulties with compiling forced us to concentrate only on merging the class- and feature-wizard&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on windows/linux-x86&lt;br /&gt;
&lt;br /&gt;
==M2: June 14, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* every team mate succeeded in compiling the newest version of ES&lt;br /&gt;
* beginning of the main work: feature- and class-wizard&lt;br /&gt;
&lt;br /&gt;
=Project Details=&lt;br /&gt;
&lt;br /&gt;
==Editor Based Wizard Execution==&lt;br /&gt;
&lt;br /&gt;
===Motivation===&lt;br /&gt;
&lt;br /&gt;
Wizards are usually only accessible through a GUI Window. This is convenient for beginners, but will slow down advanced programmers.&lt;br /&gt;
So there should be a possibility to access the wizard through the editor directly with an interface similar to a command line interface.&lt;br /&gt;
&lt;br /&gt;
===Idea===&lt;br /&gt;
&lt;br /&gt;
To execute the wizard within the editor you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write the command (possibly over some lines)&lt;br /&gt;
* Press a hotkey to execute the command&lt;br /&gt;
&lt;br /&gt;
Which hotkey we use is to be determined.&lt;br /&gt;
&lt;br /&gt;
The goal of the language to express the commands is to be as short and fast typeable as possible. Therefore it refrains from using charactes for which multiple keys must be pressed. As reference, the US-English and Swiss-German keyboard layout is used. &lt;br /&gt;
The slash '/' is not a one key character on the Swiss-German keyboard, so it can be substituted by '$'&lt;br /&gt;
&lt;br /&gt;
Since the command is only an intermediate format, structure and readability are not considered first priority here.&lt;br /&gt;
===Example===&lt;br /&gt;
&lt;br /&gt;
To create class TEST which is deferred you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write &amp;quot;/c test,d .&amp;quot;&lt;br /&gt;
* Press the hotkey&lt;br /&gt;
&lt;br /&gt;
Create a class COMPLEX with features real, imag, add and mult, arguments of add and mult are not void by precondition:&lt;br /&gt;
* Write&lt;br /&gt;
/c complex&amp;lt;br&amp;gt;&lt;br /&gt;
d read&amp;lt;br&amp;gt;&lt;br /&gt;
d imag&amp;lt;br&amp;gt;&lt;br /&gt;
1d add complex toadd,n&amp;lt;br&amp;gt;&lt;br /&gt;
1d mult complex tomult,n&amp;lt;br&amp;gt;&lt;br /&gt;
.&lt;br /&gt;
* press the Hotkey&lt;br /&gt;
&lt;br /&gt;
===Lexical Analysis===&lt;br /&gt;
&lt;br /&gt;
Token seperators:&lt;br /&gt;
* Whitespaces (' ','\n','\r','\t')&lt;br /&gt;
* ','&lt;br /&gt;
* '/'&lt;br /&gt;
* '$' (for Swiss-German keyboards)&lt;br /&gt;
The last three are tokens themselves, whitespaces are discarded&lt;br /&gt;
&lt;br /&gt;
Note: '.' does '''not''' seperate tokens.&lt;br /&gt;
&lt;br /&gt;
===Syntax===&lt;br /&gt;
&lt;br /&gt;
As the project is still in a starting phase, the information here is incomplete and could be changed.&lt;br /&gt;
&lt;br /&gt;
The syntax is made easy to parse, since we have not much experience with parsers. &lt;br /&gt;
&lt;br /&gt;
'##' means that the two symbols have no whitespace bewteen&lt;br /&gt;
&lt;br /&gt;
These symbols represent a stream of tokens:&lt;br /&gt;
&lt;br /&gt;
* wizardExecBlock ::= blockStartChar classCreate {featureCreate}* blockEndChar&lt;br /&gt;
* classCreate ::= [num_of_parents] ## 'c' className  [inheritance-list] [','attribute_list]&lt;br /&gt;
* inheritance-list ::= {inheritance_clause}*&lt;br /&gt;
* inhertitance_clause ::= {identifier [',' attribute_list]}+&lt;br /&gt;
* className ::= identifier&lt;br /&gt;
* featureCreate ::= [num_of_arguments] ## return_type name {argument_type argument_name}* [','attribute_list]&lt;br /&gt;
* return_type, argument_type ::= type&lt;br /&gt;
* name, argument_name ::= identifier&lt;br /&gt;
&lt;br /&gt;
These symbols represent one token:&lt;br /&gt;
&lt;br /&gt;
* blockStartChar ::= '/' | '$'&lt;br /&gt;
* blockEndChar ::= '.'&lt;br /&gt;
* type ::= {'.' attribute}* identifier [',' attribute_list]&lt;br /&gt;
* identifier ::= {letter}*&lt;br /&gt;
* attribute_list ::= {attribute}+&lt;br /&gt;
* attribute ::= letter&lt;br /&gt;
* letter ::= 'a'..'z'&lt;br /&gt;
* number ::= digit+&lt;br /&gt;
* digit ::= '0'..'9'&lt;br /&gt;
&lt;br /&gt;
===Explanation===&lt;br /&gt;
&lt;br /&gt;
*Feature creation:&lt;br /&gt;
** If num_of_arguments if not given, the feature is a attribute, otherwise it's a method.&lt;br /&gt;
** If return type is 'v'='void' then it's a procedure.&lt;br /&gt;
** Some mappings/abbreviations from heavily used types are intended. For example 'i'='integer', 's'='string', 'd'='double', 'f'='real'&lt;br /&gt;
* Class names are automatically converted to uppercase (it's easier to write all in lowercase)&lt;br /&gt;
&lt;br /&gt;
===Working on===&lt;br /&gt;
&lt;br /&gt;
* Specify how to do lexical analysis.&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [[User:Volkan|Volkan Arslan]] (Advisor) &lt;br /&gt;
* [[User:Chr1s| Christoph Lins]] (project leader, implementation)&lt;br /&gt;
* [[User:Haan| Andreas Hasler]] (implementation)&lt;br /&gt;
* [[User:Thertli| Timon Hertli]] (implementation)&lt;br /&gt;
* [[User:Pvrohr| Peter von Rohr]] (GUI)&lt;br /&gt;
* [[User:DavidFlatz| David Flatz]] (GUI)&lt;br /&gt;
* Damien Müllhaupt (GUI)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
if you have questions or constructive criticism concerning our project and this wiki-page then write an Email to the project leader or just join our mailinglist: &lt;br /&gt;
&lt;br /&gt;
es-wiz 'at' origo '.' ethz '.' ch&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3462</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3462"/>
				<updated>2006-06-14T20:55:30Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Team */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* Preparing the graphical interface of the feature- and class-wizard&lt;br /&gt;
* design decisions concerning GUI&lt;br /&gt;
* finding most important classes in ES that must be changed&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* Debugger is not available yet&lt;br /&gt;
* the difficulties with compiling forced us to concentrate only on merging the class- and feature-wizard&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on windows/linux-x86&lt;br /&gt;
&lt;br /&gt;
==M2: June 14, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* every team mate succeeded in compiling the newest version of ES&lt;br /&gt;
* beginning of the main work: feature- and class-wizard&lt;br /&gt;
&lt;br /&gt;
=Project Details=&lt;br /&gt;
&lt;br /&gt;
==Editor Based Wizard Execution==&lt;br /&gt;
&lt;br /&gt;
===Motivation===&lt;br /&gt;
&lt;br /&gt;
Wizards are usually only accessible through a GUI Window. This is convenient for beginners, but will slow down advanced programmers.&lt;br /&gt;
So there should be a possibility to access the wizard through the editor directly with an interface similar to a command line interface.&lt;br /&gt;
&lt;br /&gt;
===Idea===&lt;br /&gt;
&lt;br /&gt;
To execute the wizard within the editor you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write the command (possibly over some lines)&lt;br /&gt;
* Press a hotkey to execute the command&lt;br /&gt;
&lt;br /&gt;
Which hotkey we use is to be determined.&lt;br /&gt;
&lt;br /&gt;
The goal of the language to express the commands is to be as short and fast typeable as possible. Therefore it refrains from using charactes for which multiple keys must be pressed. As reference, the US-English and Swiss-German keyboard layout is used. &lt;br /&gt;
The slash '/' is not a one key character on the Swiss-German keyboard, so it can be substituted by '$'&lt;br /&gt;
&lt;br /&gt;
Since the command is only an intermediate format, structure and readability are not considered first priority here.&lt;br /&gt;
===Example===&lt;br /&gt;
&lt;br /&gt;
To create class TEST which is deferred you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write &amp;quot;/c test,d .&amp;quot;&lt;br /&gt;
* Press the hotkey&lt;br /&gt;
&lt;br /&gt;
Create a class COMPLEX with features real, imag, add and mult, arguments of add and mult are not void by precondition:&lt;br /&gt;
* Write&lt;br /&gt;
/c complex&amp;lt;br&amp;gt;&lt;br /&gt;
d read&amp;lt;br&amp;gt;&lt;br /&gt;
d imag&amp;lt;br&amp;gt;&lt;br /&gt;
1d add complex toadd,n&amp;lt;br&amp;gt;&lt;br /&gt;
1d mult complex tomult,n&amp;lt;br&amp;gt;&lt;br /&gt;
.&lt;br /&gt;
* press the Hotkey&lt;br /&gt;
&lt;br /&gt;
===Lexical Analysis===&lt;br /&gt;
&lt;br /&gt;
Token seperators:&lt;br /&gt;
* Whitespaces (' ','\n','\r','\t')&lt;br /&gt;
* ','&lt;br /&gt;
* '/'&lt;br /&gt;
* '$' (for Swiss-German keyboards)&lt;br /&gt;
The last three are tokens themselves, whitespaces are discarded&lt;br /&gt;
&lt;br /&gt;
Note: '.' does '''not''' seperate tokens.&lt;br /&gt;
&lt;br /&gt;
===Syntax===&lt;br /&gt;
&lt;br /&gt;
As the project is still in a starting phase, the information here is incomplete and could be changed.&lt;br /&gt;
&lt;br /&gt;
The syntax is made easy to parse, since we have not much experience with parsers. &lt;br /&gt;
&lt;br /&gt;
'##' means that the two symbols have no whitespace bewteen&lt;br /&gt;
&lt;br /&gt;
These symbols represent a stream of tokens:&lt;br /&gt;
&lt;br /&gt;
* wizardExecBlock ::= blockStartChar classCreate {featureCreate}* blockEndChar&lt;br /&gt;
* classCreate ::= [num_of_parents] ## 'c' className  [inheritance-list] [','attribute_list]&lt;br /&gt;
* inheritance-list ::= {inheritance_clause}*&lt;br /&gt;
* inhertitance_clause ::= {identifier [',' attribute_list]}+&lt;br /&gt;
* className ::= identifier&lt;br /&gt;
* featureCreate ::= [num_of_arguments] ## return_type name {argument_type argument_name}* [','attribute_list]&lt;br /&gt;
* return_type, argument_type ::= type&lt;br /&gt;
* name, argument_name ::= identifier&lt;br /&gt;
&lt;br /&gt;
These symbols represent one token:&lt;br /&gt;
&lt;br /&gt;
* blockStartChar ::= '/' | '$'&lt;br /&gt;
* blockEndChar ::= '.'&lt;br /&gt;
* type ::= {'.' attribute}* identifier [',' attribute_list]&lt;br /&gt;
* identifier ::= {letter}*&lt;br /&gt;
* attribute_list ::= {attribute}+&lt;br /&gt;
* attribute ::= letter&lt;br /&gt;
* letter ::= 'a'..'z'&lt;br /&gt;
* number ::= digit+&lt;br /&gt;
* digit ::= '0'..'9'&lt;br /&gt;
&lt;br /&gt;
===Explanation===&lt;br /&gt;
&lt;br /&gt;
*Feature creation:&lt;br /&gt;
** If num_of_arguments if not given, the feature is a attribute, otherwise it's a method.&lt;br /&gt;
** If return type is 'v'='void' then it's a procedure.&lt;br /&gt;
** Some mappings/abbreviations from heavily used types are intended. For example 'i'='integer', 's'='string', 'd'='double', 'f'='real'&lt;br /&gt;
* Class names are automatically converted to uppercase (it's easier to write all in lowercase)&lt;br /&gt;
&lt;br /&gt;
===Working on===&lt;br /&gt;
&lt;br /&gt;
* Specify how to do lexical analysis.&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [[User:Volkan|Volkan Arslan]] (Advisor) &lt;br /&gt;
* [[User:Chr1s| Christoph Lins]] (project leader, implementation)&lt;br /&gt;
* [[User:Haan| Andreas Hasler]] (implementation)&lt;br /&gt;
* [[User:Thertli| Timon Hertli]] (implementation)&lt;br /&gt;
* [[User:Pvrohr| Peter von Rohr]] (GUI)&lt;br /&gt;
* [[User:DavidFlatz| David Flatz]] (GUI)&lt;br /&gt;
* Damien Müllhaupt (docking the wizard) (GUI)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
if you have questions or constructive criticism concerning our project and this wiki-page then write an Email to the project leader or just join our mailinglist: &lt;br /&gt;
&lt;br /&gt;
es-wiz 'at' origo '.' ethz '.' ch&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3461</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3461"/>
				<updated>2006-06-14T20:53:56Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Problems */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* Preparing the graphical interface of the feature- and class-wizard&lt;br /&gt;
* design decisions concerning GUI&lt;br /&gt;
* finding most important classes in ES that must be changed&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* Debugger is not available yet&lt;br /&gt;
* the difficulties with compiling forced us to concentrate only on merging the class- and feature-wizard&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on windows/linux-x86&lt;br /&gt;
&lt;br /&gt;
==M2: June 14, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* every team mate succeeded in compiling the newest version of ES&lt;br /&gt;
* beginning of the main work: feature- and class-wizard&lt;br /&gt;
&lt;br /&gt;
=Project Details=&lt;br /&gt;
&lt;br /&gt;
==Editor Based Wizard Execution==&lt;br /&gt;
&lt;br /&gt;
===Motivation===&lt;br /&gt;
&lt;br /&gt;
Wizards are usually only accessible through a GUI Window. This is convenient for beginners, but will slow down advanced programmers.&lt;br /&gt;
So there should be a possibility to access the wizard through the editor directly with an interface similar to a command line interface.&lt;br /&gt;
&lt;br /&gt;
===Idea===&lt;br /&gt;
&lt;br /&gt;
To execute the wizard within the editor you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write the command (possibly over some lines)&lt;br /&gt;
* Press a hotkey to execute the command&lt;br /&gt;
&lt;br /&gt;
Which hotkey we use is to be determined.&lt;br /&gt;
&lt;br /&gt;
The goal of the language to express the commands is to be as short and fast typeable as possible. Therefore it refrains from using charactes for which multiple keys must be pressed. As reference, the US-English and Swiss-German keyboard layout is used. &lt;br /&gt;
The slash '/' is not a one key character on the Swiss-German keyboard, so it can be substituted by '$'&lt;br /&gt;
&lt;br /&gt;
Since the command is only an intermediate format, structure and readability are not considered first priority here.&lt;br /&gt;
===Example===&lt;br /&gt;
&lt;br /&gt;
To create class TEST which is deferred you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write &amp;quot;/c test,d .&amp;quot;&lt;br /&gt;
* Press the hotkey&lt;br /&gt;
&lt;br /&gt;
Create a class COMPLEX with features real, imag, add and mult, arguments of add and mult are not void by precondition:&lt;br /&gt;
* Write&lt;br /&gt;
/c complex&amp;lt;br&amp;gt;&lt;br /&gt;
d read&amp;lt;br&amp;gt;&lt;br /&gt;
d imag&amp;lt;br&amp;gt;&lt;br /&gt;
1d add complex toadd,n&amp;lt;br&amp;gt;&lt;br /&gt;
1d mult complex tomult,n&amp;lt;br&amp;gt;&lt;br /&gt;
.&lt;br /&gt;
* press the Hotkey&lt;br /&gt;
&lt;br /&gt;
===Lexical Analysis===&lt;br /&gt;
&lt;br /&gt;
Token seperators:&lt;br /&gt;
* Whitespaces (' ','\n','\r','\t')&lt;br /&gt;
* ','&lt;br /&gt;
* '/'&lt;br /&gt;
* '$' (for Swiss-German keyboards)&lt;br /&gt;
The last three are tokens themselves, whitespaces are discarded&lt;br /&gt;
&lt;br /&gt;
Note: '.' does '''not''' seperate tokens.&lt;br /&gt;
&lt;br /&gt;
===Syntax===&lt;br /&gt;
&lt;br /&gt;
As the project is still in a starting phase, the information here is incomplete and could be changed.&lt;br /&gt;
&lt;br /&gt;
The syntax is made easy to parse, since we have not much experience with parsers. &lt;br /&gt;
&lt;br /&gt;
'##' means that the two symbols have no whitespace bewteen&lt;br /&gt;
&lt;br /&gt;
These symbols represent a stream of tokens:&lt;br /&gt;
&lt;br /&gt;
* wizardExecBlock ::= blockStartChar classCreate {featureCreate}* blockEndChar&lt;br /&gt;
* classCreate ::= [num_of_parents] ## 'c' className  [inheritance-list] [','attribute_list]&lt;br /&gt;
* inheritance-list ::= {inheritance_clause}*&lt;br /&gt;
* inhertitance_clause ::= {identifier [',' attribute_list]}+&lt;br /&gt;
* className ::= identifier&lt;br /&gt;
* featureCreate ::= [num_of_arguments] ## return_type name {argument_type argument_name}* [','attribute_list]&lt;br /&gt;
* return_type, argument_type ::= type&lt;br /&gt;
* name, argument_name ::= identifier&lt;br /&gt;
&lt;br /&gt;
These symbols represent one token:&lt;br /&gt;
&lt;br /&gt;
* blockStartChar ::= '/' | '$'&lt;br /&gt;
* blockEndChar ::= '.'&lt;br /&gt;
* type ::= {'.' attribute}* identifier [',' attribute_list]&lt;br /&gt;
* identifier ::= {letter}*&lt;br /&gt;
* attribute_list ::= {attribute}+&lt;br /&gt;
* attribute ::= letter&lt;br /&gt;
* letter ::= 'a'..'z'&lt;br /&gt;
* number ::= digit+&lt;br /&gt;
* digit ::= '0'..'9'&lt;br /&gt;
&lt;br /&gt;
===Explanation===&lt;br /&gt;
&lt;br /&gt;
*Feature creation:&lt;br /&gt;
** If num_of_arguments if not given, the feature is a attribute, otherwise it's a method.&lt;br /&gt;
** If return type is 'v'='void' then it's a procedure.&lt;br /&gt;
** Some mappings/abbreviations from heavily used types are intended. For example 'i'='integer', 's'='string', 'd'='double', 'f'='real'&lt;br /&gt;
* Class names are automatically converted to uppercase (it's easier to write all in lowercase)&lt;br /&gt;
&lt;br /&gt;
===Working on===&lt;br /&gt;
&lt;br /&gt;
* Specify how to do lexical analysis.&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [[User:Volkan|Volkan Arslan]] (Advisor) &lt;br /&gt;
* [[User:Chr1s| Christoph Lins]] (project leader)&lt;br /&gt;
* [[User:Haan| Andreas Hasler]] (working on updating permanently the editor while using the wizard)&lt;br /&gt;
* [[User:Thertli| Timon Hertli]] (working on editor based wizard execution)&lt;br /&gt;
* [[User:Pvrohr| Peter von Rohr]] (working on beginner-tour / tooltips)&lt;br /&gt;
* [[User:DavidFlatz| David Flatz]] &lt;br /&gt;
* Damien Müllhaupt (docking the wizard)&lt;br /&gt;
* Patricio Ronc&lt;br /&gt;
&lt;br /&gt;
if you have questions or constructive criticism concerning our project and this wiki-page then write an Email to the project leader or just join our mailinglist: &lt;br /&gt;
&lt;br /&gt;
es-wiz 'at' origo '.' ethz '.' ch&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3459</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3459"/>
				<updated>2006-06-14T20:52:22Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* M1: April 30, 2006 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* Preparing the graphical interface of the feature- and class-wizard&lt;br /&gt;
* design decisions concerning GUI&lt;br /&gt;
* finding most important classes in ES that must be changed&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* Debugger is not available yet&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on windows/linux-x86&lt;br /&gt;
&lt;br /&gt;
==M2: June 14, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* every team mate succeeded in compiling the newest version of ES&lt;br /&gt;
* beginning of the main work: feature- and class-wizard&lt;br /&gt;
&lt;br /&gt;
=Project Details=&lt;br /&gt;
&lt;br /&gt;
==Editor Based Wizard Execution==&lt;br /&gt;
&lt;br /&gt;
===Motivation===&lt;br /&gt;
&lt;br /&gt;
Wizards are usually only accessible through a GUI Window. This is convenient for beginners, but will slow down advanced programmers.&lt;br /&gt;
So there should be a possibility to access the wizard through the editor directly with an interface similar to a command line interface.&lt;br /&gt;
&lt;br /&gt;
===Idea===&lt;br /&gt;
&lt;br /&gt;
To execute the wizard within the editor you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write the command (possibly over some lines)&lt;br /&gt;
* Press a hotkey to execute the command&lt;br /&gt;
&lt;br /&gt;
Which hotkey we use is to be determined.&lt;br /&gt;
&lt;br /&gt;
The goal of the language to express the commands is to be as short and fast typeable as possible. Therefore it refrains from using charactes for which multiple keys must be pressed. As reference, the US-English and Swiss-German keyboard layout is used. &lt;br /&gt;
The slash '/' is not a one key character on the Swiss-German keyboard, so it can be substituted by '$'&lt;br /&gt;
&lt;br /&gt;
Since the command is only an intermediate format, structure and readability are not considered first priority here.&lt;br /&gt;
===Example===&lt;br /&gt;
&lt;br /&gt;
To create class TEST which is deferred you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write &amp;quot;/c test,d .&amp;quot;&lt;br /&gt;
* Press the hotkey&lt;br /&gt;
&lt;br /&gt;
Create a class COMPLEX with features real, imag, add and mult, arguments of add and mult are not void by precondition:&lt;br /&gt;
* Write&lt;br /&gt;
/c complex&amp;lt;br&amp;gt;&lt;br /&gt;
d read&amp;lt;br&amp;gt;&lt;br /&gt;
d imag&amp;lt;br&amp;gt;&lt;br /&gt;
1d add complex toadd,n&amp;lt;br&amp;gt;&lt;br /&gt;
1d mult complex tomult,n&amp;lt;br&amp;gt;&lt;br /&gt;
.&lt;br /&gt;
* press the Hotkey&lt;br /&gt;
&lt;br /&gt;
===Lexical Analysis===&lt;br /&gt;
&lt;br /&gt;
Token seperators:&lt;br /&gt;
* Whitespaces (' ','\n','\r','\t')&lt;br /&gt;
* ','&lt;br /&gt;
* '/'&lt;br /&gt;
* '$' (for Swiss-German keyboards)&lt;br /&gt;
The last three are tokens themselves, whitespaces are discarded&lt;br /&gt;
&lt;br /&gt;
Note: '.' does '''not''' seperate tokens.&lt;br /&gt;
&lt;br /&gt;
===Syntax===&lt;br /&gt;
&lt;br /&gt;
As the project is still in a starting phase, the information here is incomplete and could be changed.&lt;br /&gt;
&lt;br /&gt;
The syntax is made easy to parse, since we have not much experience with parsers. &lt;br /&gt;
&lt;br /&gt;
'##' means that the two symbols have no whitespace bewteen&lt;br /&gt;
&lt;br /&gt;
These symbols represent a stream of tokens:&lt;br /&gt;
&lt;br /&gt;
* wizardExecBlock ::= blockStartChar classCreate {featureCreate}* blockEndChar&lt;br /&gt;
* classCreate ::= [num_of_parents] ## 'c' className  [inheritance-list] [','attribute_list]&lt;br /&gt;
* inheritance-list ::= {inheritance_clause}*&lt;br /&gt;
* inhertitance_clause ::= {identifier [',' attribute_list]}+&lt;br /&gt;
* className ::= identifier&lt;br /&gt;
* featureCreate ::= [num_of_arguments] ## return_type name {argument_type argument_name}* [','attribute_list]&lt;br /&gt;
* return_type, argument_type ::= type&lt;br /&gt;
* name, argument_name ::= identifier&lt;br /&gt;
&lt;br /&gt;
These symbols represent one token:&lt;br /&gt;
&lt;br /&gt;
* blockStartChar ::= '/' | '$'&lt;br /&gt;
* blockEndChar ::= '.'&lt;br /&gt;
* type ::= {'.' attribute}* identifier [',' attribute_list]&lt;br /&gt;
* identifier ::= {letter}*&lt;br /&gt;
* attribute_list ::= {attribute}+&lt;br /&gt;
* attribute ::= letter&lt;br /&gt;
* letter ::= 'a'..'z'&lt;br /&gt;
* number ::= digit+&lt;br /&gt;
* digit ::= '0'..'9'&lt;br /&gt;
&lt;br /&gt;
===Explanation===&lt;br /&gt;
&lt;br /&gt;
*Feature creation:&lt;br /&gt;
** If num_of_arguments if not given, the feature is a attribute, otherwise it's a method.&lt;br /&gt;
** If return type is 'v'='void' then it's a procedure.&lt;br /&gt;
** Some mappings/abbreviations from heavily used types are intended. For example 'i'='integer', 's'='string', 'd'='double', 'f'='real'&lt;br /&gt;
* Class names are automatically converted to uppercase (it's easier to write all in lowercase)&lt;br /&gt;
&lt;br /&gt;
===Working on===&lt;br /&gt;
&lt;br /&gt;
* Specify how to do lexical analysis.&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [[User:Volkan|Volkan Arslan]] (Advisor) &lt;br /&gt;
* [[User:Chr1s| Christoph Lins]] (project leader)&lt;br /&gt;
* [[User:Haan| Andreas Hasler]] (working on updating permanently the editor while using the wizard)&lt;br /&gt;
* [[User:Thertli| Timon Hertli]] (working on editor based wizard execution)&lt;br /&gt;
* [[User:Pvrohr| Peter von Rohr]] (working on beginner-tour / tooltips)&lt;br /&gt;
* [[User:DavidFlatz| David Flatz]] &lt;br /&gt;
* Damien Müllhaupt (docking the wizard)&lt;br /&gt;
* Patricio Ronc&lt;br /&gt;
&lt;br /&gt;
if you have questions or constructive criticism concerning our project and this wiki-page then write an Email to the project leader or just join our mailinglist: &lt;br /&gt;
&lt;br /&gt;
es-wiz 'at' origo '.' ethz '.' ch&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3457</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=3457"/>
				<updated>2006-06-14T20:49:46Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Work */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* Preparing the graphical interface of the feature- and class-wizard&lt;br /&gt;
* design decisions concerning GUI&lt;br /&gt;
* finding most important classes in ES that must be changed&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* Debugger is not available yet&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on windows/linux-x86&lt;br /&gt;
&lt;br /&gt;
=Project Details=&lt;br /&gt;
&lt;br /&gt;
==Editor Based Wizard Execution==&lt;br /&gt;
&lt;br /&gt;
===Motivation===&lt;br /&gt;
&lt;br /&gt;
Wizards are usually only accessible through a GUI Window. This is convenient for beginners, but will slow down advanced programmers.&lt;br /&gt;
So there should be a possibility to access the wizard through the editor directly with an interface similar to a command line interface.&lt;br /&gt;
&lt;br /&gt;
===Idea===&lt;br /&gt;
&lt;br /&gt;
To execute the wizard within the editor you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write the command (possibly over some lines)&lt;br /&gt;
* Press a hotkey to execute the command&lt;br /&gt;
&lt;br /&gt;
Which hotkey we use is to be determined.&lt;br /&gt;
&lt;br /&gt;
The goal of the language to express the commands is to be as short and fast typeable as possible. Therefore it refrains from using charactes for which multiple keys must be pressed. As reference, the US-English and Swiss-German keyboard layout is used. &lt;br /&gt;
The slash '/' is not a one key character on the Swiss-German keyboard, so it can be substituted by '$'&lt;br /&gt;
&lt;br /&gt;
Since the command is only an intermediate format, structure and readability are not considered first priority here.&lt;br /&gt;
===Example===&lt;br /&gt;
&lt;br /&gt;
To create class TEST which is deferred you have to do the following:&lt;br /&gt;
&lt;br /&gt;
* Write &amp;quot;/c test,d .&amp;quot;&lt;br /&gt;
* Press the hotkey&lt;br /&gt;
&lt;br /&gt;
Create a class COMPLEX with features real, imag, add and mult, arguments of add and mult are not void by precondition:&lt;br /&gt;
* Write&lt;br /&gt;
/c complex&amp;lt;br&amp;gt;&lt;br /&gt;
d read&amp;lt;br&amp;gt;&lt;br /&gt;
d imag&amp;lt;br&amp;gt;&lt;br /&gt;
1d add complex toadd,n&amp;lt;br&amp;gt;&lt;br /&gt;
1d mult complex tomult,n&amp;lt;br&amp;gt;&lt;br /&gt;
.&lt;br /&gt;
* press the Hotkey&lt;br /&gt;
&lt;br /&gt;
===Lexical Analysis===&lt;br /&gt;
&lt;br /&gt;
Token seperators:&lt;br /&gt;
* Whitespaces (' ','\n','\r','\t')&lt;br /&gt;
* ','&lt;br /&gt;
* '/'&lt;br /&gt;
* '$' (for Swiss-German keyboards)&lt;br /&gt;
The last three are tokens themselves, whitespaces are discarded&lt;br /&gt;
&lt;br /&gt;
Note: '.' does '''not''' seperate tokens.&lt;br /&gt;
&lt;br /&gt;
===Syntax===&lt;br /&gt;
&lt;br /&gt;
As the project is still in a starting phase, the information here is incomplete and could be changed.&lt;br /&gt;
&lt;br /&gt;
The syntax is made easy to parse, since we have not much experience with parsers. &lt;br /&gt;
&lt;br /&gt;
'##' means that the two symbols have no whitespace bewteen&lt;br /&gt;
&lt;br /&gt;
These symbols represent a stream of tokens:&lt;br /&gt;
&lt;br /&gt;
* wizardExecBlock ::= blockStartChar classCreate {featureCreate}* blockEndChar&lt;br /&gt;
* classCreate ::= [num_of_parents] ## 'c' className  [inheritance-list] [','attribute_list]&lt;br /&gt;
* inheritance-list ::= {inheritance_clause}*&lt;br /&gt;
* inhertitance_clause ::= {identifier [',' attribute_list]}+&lt;br /&gt;
* className ::= identifier&lt;br /&gt;
* featureCreate ::= [num_of_arguments] ## return_type name {argument_type argument_name}* [','attribute_list]&lt;br /&gt;
* return_type, argument_type ::= type&lt;br /&gt;
* name, argument_name ::= identifier&lt;br /&gt;
&lt;br /&gt;
These symbols represent one token:&lt;br /&gt;
&lt;br /&gt;
* blockStartChar ::= '/' | '$'&lt;br /&gt;
* blockEndChar ::= '.'&lt;br /&gt;
* type ::= {'.' attribute}* identifier [',' attribute_list]&lt;br /&gt;
* identifier ::= {letter}*&lt;br /&gt;
* attribute_list ::= {attribute}+&lt;br /&gt;
* attribute ::= letter&lt;br /&gt;
* letter ::= 'a'..'z'&lt;br /&gt;
* number ::= digit+&lt;br /&gt;
* digit ::= '0'..'9'&lt;br /&gt;
&lt;br /&gt;
===Explanation===&lt;br /&gt;
&lt;br /&gt;
*Feature creation:&lt;br /&gt;
** If num_of_arguments if not given, the feature is a attribute, otherwise it's a method.&lt;br /&gt;
** If return type is 'v'='void' then it's a procedure.&lt;br /&gt;
** Some mappings/abbreviations from heavily used types are intended. For example 'i'='integer', 's'='string', 'd'='double', 'f'='real'&lt;br /&gt;
* Class names are automatically converted to uppercase (it's easier to write all in lowercase)&lt;br /&gt;
&lt;br /&gt;
===Working on===&lt;br /&gt;
&lt;br /&gt;
* Specify how to do lexical analysis.&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [[User:Volkan|Volkan Arslan]] (Advisor) &lt;br /&gt;
* [[User:Chr1s| Christoph Lins]] (project leader)&lt;br /&gt;
* [[User:Haan| Andreas Hasler]] (working on updating permanently the editor while using the wizard)&lt;br /&gt;
* [[User:Thertli| Timon Hertli]] (working on editor based wizard execution)&lt;br /&gt;
* [[User:Pvrohr| Peter von Rohr]] (working on beginner-tour / tooltips)&lt;br /&gt;
* [[User:DavidFlatz| David Flatz]] &lt;br /&gt;
* Damien Müllhaupt (docking the wizard)&lt;br /&gt;
* Patricio Ronc&lt;br /&gt;
&lt;br /&gt;
if you have questions or constructive criticism concerning our project and this wiki-page then write an Email to the project leader or just join our mailinglist: &lt;br /&gt;
&lt;br /&gt;
es-wiz 'at' origo '.' ethz '.' ch&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2600</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2600"/>
				<updated>2006-05-03T22:01:46Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Team */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* compiling ES on Linux systems&lt;br /&gt;
* supplying work to every member of the team&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* cannot open projects in ES (waiting for new release/build)&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on windows/linux-x86&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [[User:Volkan|Volkan Arslan]] (Advisor) &lt;br /&gt;
* [[User:Chr1s| Christoph Lins]] (project leader)&lt;br /&gt;
* [[User:Haan| Andreas Hasler]] (working on updating permanently the editor while using the wizard)&lt;br /&gt;
* [[User:Thertli| Timon Hertli]] (working on editor based wizard execution)&lt;br /&gt;
* Peter von Rohr (working on beginner-tour / tooltips)&lt;br /&gt;
* [[User:DavidFlatz| David Flatz]] &lt;br /&gt;
* Damien Müllhaupt (docking the wizard)&lt;br /&gt;
* Patricio Ronc&lt;br /&gt;
&lt;br /&gt;
if you have questions or constructive criticism concerning our project and this wiki-page then write an Email to the project leader or just join our mailinglist: &lt;br /&gt;
&lt;br /&gt;
es-wiz 'at' origo '.' ethz '.' ch&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2543</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2543"/>
				<updated>2006-05-03T05:19:55Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* M1: April 30, 2006 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* compiling ES on Linux systems&lt;br /&gt;
* supplying work to every member of the team&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* cannot open projects in ES (waiting for new release/build)&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on windows/linux-x86&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [[User:Volkan|Volkan Arslan]] (Advisor) &lt;br /&gt;
* [[User:Chr1s| Christoph Lins]] (project leader)&lt;br /&gt;
* [[User:Haan| Andreas Hasler]] (working on updating permanently the editor while using the wizard)&lt;br /&gt;
* [[User:Thertli| Timon Hertli]] (working on editor based wizard execution)&lt;br /&gt;
* Peter von Rohr (working on beginner-tour / tooltips)&lt;br /&gt;
* [[User:DavidFlatz| David Flatz]] &lt;br /&gt;
* Damien Müllhaupt &lt;br /&gt;
* Patricio Ronc&lt;br /&gt;
&lt;br /&gt;
if you have questions or constructive criticism concerning our project and this wiki-page then write an Email to the project leader or just join our mailinglist: &lt;br /&gt;
&lt;br /&gt;
es-wiz 'at' origo '.' ethz '.' ch&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2482</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2482"/>
				<updated>2006-05-02T11:02:15Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Team */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* compiling ES on Linux systems&lt;br /&gt;
* supplying work to every member of the team&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* cannot open projects in ES (waiting for new release/build)&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on WinXP&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [[User:Volkan|Volkan Arslan]] (Advisor) &lt;br /&gt;
* [[User:Chr1s| Christoph Lins]] (project leader)&lt;br /&gt;
* [[User:Haan| Andreas Hasler]] (working on updating permanently the editor while using the wizard)&lt;br /&gt;
* [[User:Thertli| Timon Hertli]] (working on editor based wizard execution)&lt;br /&gt;
* Peter von Rohr (working on beginner-tour / tooltips)&lt;br /&gt;
* [[User:DavidFlatz| David Flatz]] &lt;br /&gt;
* Damien Müllhaupt &lt;br /&gt;
* Patricio Ronc&lt;br /&gt;
&lt;br /&gt;
if you have questions or constructive criticism concerning our project and this wiki-page then write an Email to the project leader or just join our mailinglist: &lt;br /&gt;
&lt;br /&gt;
es-wiz 'at' origo '.' ethz '.' ch&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2481</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2481"/>
				<updated>2006-05-02T11:01:06Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Team */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* compiling ES on Linux systems&lt;br /&gt;
* supplying work to every member of the team&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* cannot open projects in ES (waiting for new release/build)&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on WinXP&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [[User:Chr1s| Christoph Lins]] (project leader)&lt;br /&gt;
* [[User:Haan| Andreas Hasler]] (working on updating permanently the editor while using the wizard)&lt;br /&gt;
* [[User:Thertli| Timon Hertli]] (working on editor based wizard execution)&lt;br /&gt;
* Peter von Rohr (working on beginner-tour / tooltips)&lt;br /&gt;
* [[User:DavidFlatz| David Flatz]] &lt;br /&gt;
* Damien Müllhaupt &lt;br /&gt;
* Patricio Ronc&lt;br /&gt;
&lt;br /&gt;
if you have questions or constructive criticism concerning our project and this wiki-page then write an Email to the project leader or just join our mailinglist: &lt;br /&gt;
&lt;br /&gt;
es-wiz 'at' origo '.' ethz '.' ch&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2479</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2479"/>
				<updated>2006-05-02T10:55:30Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Team */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* compiling ES on Linux systems&lt;br /&gt;
* supplying work to every member of the team&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* cannot open projects in ES (waiting for new release/build)&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on WinXP&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [[User:Chr1s| Christoph Lins]] (project leader)&lt;br /&gt;
* [[User:Haan| Andreas Hasler]] (working on updating permanently the editor while using the wizard)&lt;br /&gt;
* Timon Hertli (working on editor based wizard execution)&lt;br /&gt;
* Peter von Rohr (working on beginner-tour / tooltips)&lt;br /&gt;
* David Flatz &lt;br /&gt;
* Damien Müllhaupt &lt;br /&gt;
* Patricio Ronc&lt;br /&gt;
&lt;br /&gt;
if you have questions or constructive criticism concerning our project and this wiki-page then write an Email to the project leader or just join our mailinglist: &lt;br /&gt;
&lt;br /&gt;
es-wiz 'at' origo '.' ethz '.' ch&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2478</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2478"/>
				<updated>2006-05-02T10:55:14Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Team */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* compiling ES on Linux systems&lt;br /&gt;
* supplying work to every member of the team&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* cannot open projects in ES (waiting for new release/build)&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on WinXP&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [[User:Chr1s| Christoph Lins]] (project leader)&lt;br /&gt;
* [[User:Haan| Andreas Hasler (working on updating permanently the editor while using the wizard)&lt;br /&gt;
* Timon Hertli (working on editor based wizard execution)&lt;br /&gt;
* Peter von Rohr (working on beginner-tour / tooltips)&lt;br /&gt;
* David Flatz &lt;br /&gt;
* Damien Müllhaupt &lt;br /&gt;
* Patricio Ronc&lt;br /&gt;
&lt;br /&gt;
if you have questions or constructive criticism concerning our project and this wiki-page then write an Email to the project leader or just join our mailinglist: &lt;br /&gt;
&lt;br /&gt;
es-wiz 'at' origo '.' ethz '.' ch&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2477</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2477"/>
				<updated>2006-05-02T10:53:42Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Team */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* compiling ES on Linux systems&lt;br /&gt;
* supplying work to every member of the team&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* cannot open projects in ES (waiting for new release/build)&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on WinXP&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [[User:Chr1s| Christoph Lins]] (project leader)&lt;br /&gt;
* Andreas Hasler (working on updating permanently the editor while using the wizard)&lt;br /&gt;
* Timon Hertli (working on editor based wizard execution)&lt;br /&gt;
* Peter von Rohr (working on beginner-tour / tooltips)&lt;br /&gt;
* David Flatz &lt;br /&gt;
* Damien Müllhaupt &lt;br /&gt;
* Patricio Ronc&lt;br /&gt;
&lt;br /&gt;
if you have questions or constructive criticism concerning our project and this wiki-page then write an Email to the project leader or just join our mailinglist: &lt;br /&gt;
&lt;br /&gt;
es-wiz 'at' origo '.' ethz '.' ch&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2468</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2468"/>
				<updated>2006-05-01T21:37:10Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* compiling ES on Linux systems&lt;br /&gt;
* supplying work to every member of the team&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* cannot open projects in ES (waiting for new release/build)&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on WinXP&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [[User:Chr1s| Christoph Lins]] (project leader)&lt;br /&gt;
* Andreas Hasler &lt;br /&gt;
* Timon Hertli (working on editor based wizard execution)&lt;br /&gt;
* Peter von Rohr (working on beginner-tour / tooltips)&lt;br /&gt;
* David Flatz &lt;br /&gt;
* Damien Müllhaupt &lt;br /&gt;
* Patricio Ronc&lt;br /&gt;
&lt;br /&gt;
if you have questions or constructive criticism concerning our project and this wiki-page then write an Email to the project leader or just join our mailinglist: &lt;br /&gt;
&lt;br /&gt;
es-wiz 'at' origo '.' ethz '.' ch&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2467</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2467"/>
				<updated>2006-05-01T21:36:25Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Team */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* compiling ES on Linux systems&lt;br /&gt;
* supplying work to every member of the team&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* cannot open projects in ES (waiting for new release/build)&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on WinXP&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [[User:Chr1s| Christoph Lins]] (project leader)&lt;br /&gt;
* Andreas Hasler &lt;br /&gt;
* Timon Hertli (working on editor based wizard execution)&lt;br /&gt;
* Peter von Rohr (working on beginner-tour / tooltips)&lt;br /&gt;
* David Flatz &lt;br /&gt;
* Damien Müllhaupt &lt;br /&gt;
* Patricio Ronc&lt;br /&gt;
&lt;br /&gt;
if you have questions or constructive criticism concerning our project and this wiki-page then write an Email to the project leader or just join our mailinglist: &lt;br /&gt;
&lt;br /&gt;
es-wiz 'at' origo '.' ethz '.' ch&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2438</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2438"/>
				<updated>2006-04-30T19:24:35Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Team */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* compiling ES on Linux systems&lt;br /&gt;
* supplying work to every member of the team&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* cannot open projects in ES (waiting for new release/build)&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on WinXP&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [[User:Chr1s| Christoph Lins]] (project leader)&lt;br /&gt;
* Andreas Hasler &lt;br /&gt;
* Timon Hertli (working on editor based wizard execution)&lt;br /&gt;
* Peter von Rohr &lt;br /&gt;
* David Flatz &lt;br /&gt;
* Damien Müllhaupt &lt;br /&gt;
* Patricio Ronc&lt;br /&gt;
&lt;br /&gt;
if you have questions or constructive criticism concerning our project and this wiki-page then write an Email to the project leader or just join our mailinglist: &lt;br /&gt;
&lt;br /&gt;
es-wiz 'at' origo '.' ethz '.' ch&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=User:Chr1s&amp;diff=2437</id>
		<title>User:Chr1s</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=User:Chr1s&amp;diff=2437"/>
				<updated>2006-04-30T19:23:22Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Who? :: Christoph Lins&lt;br /&gt;
* Where? :: Liechtenstein &lt;br /&gt;
* Why? :: working as [[Advanced Class and Feature Wizard | project]] leader instructed by Volkan Arslan&lt;br /&gt;
&lt;br /&gt;
contact: christoph '.' lins 'at' gmail '.' com&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=User:Chr1s&amp;diff=2436</id>
		<title>User:Chr1s</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=User:Chr1s&amp;diff=2436"/>
				<updated>2006-04-30T19:22:56Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Who? :: Christoph Lins&lt;br /&gt;
* Where? :: Liechtenstein &lt;br /&gt;
* Why? :: working as [[Advanced Class and Feature Wizard]] leader instructed by Volkan Arslan&lt;br /&gt;
&lt;br /&gt;
contact: christoph '.' lins 'at' gmail '.' com&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=User:Chr1s&amp;diff=2435</id>
		<title>User:Chr1s</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=User:Chr1s&amp;diff=2435"/>
				<updated>2006-04-30T19:22:41Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Who? :: Christoph Lins&lt;br /&gt;
* Where? :: Liechtenstein &lt;br /&gt;
* Why? :: working as [Advanced Class and Feature Wizard] leader instructed by Volkan Arslan&lt;br /&gt;
&lt;br /&gt;
contact: christoph '.' lins 'at' gmail '.' com&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2434</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2434"/>
				<updated>2006-04-30T19:21:57Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Team */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* compiling ES on Linux systems&lt;br /&gt;
* supplying work to every member of the team&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* cannot open projects in ES (waiting for new release/build)&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on WinXP&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [[User:Chr1s| Christoph Lins]] (project leader)&lt;br /&gt;
* Andreas Hasler &lt;br /&gt;
* Timon Hertli (working on editor based wizard execution)&lt;br /&gt;
* Peter von Rohr &lt;br /&gt;
* David Flatz &lt;br /&gt;
* Damien Müllhaupt &lt;br /&gt;
* Patricio Ronc&lt;br /&gt;
&lt;br /&gt;
if you have questions or constructive criticism concerning our project and this wiki-page then write an Email to the project leader or to all members: &lt;br /&gt;
&lt;br /&gt;
es-wiz 'at' origo '.' ethz '.' ch&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2433</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2433"/>
				<updated>2006-04-30T19:09:27Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Team */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* compiling ES on Linux systems&lt;br /&gt;
* supplying work to every member of the team&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* cannot open projects in ES (waiting for new release/build)&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on WinXP&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [http://eiffelsoftware.origo.ethz.ch/index.php/User:Chr1s Christoph Lins] (project leader)&lt;br /&gt;
* Andreas Hasler &lt;br /&gt;
* Timon Hertli (working on editor based wizard execution)&lt;br /&gt;
* Peter von Rohr &lt;br /&gt;
* David Flatz &lt;br /&gt;
* Damien Müllhaupt &lt;br /&gt;
* Patricio Ronc&lt;br /&gt;
&lt;br /&gt;
if you have questions or constructive criticism concerning our project and this wiki-page then write an Email to the project leader or to all members: &lt;br /&gt;
&lt;br /&gt;
es-wiz 'at' origo '.' ethz '.' ch&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2432</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2432"/>
				<updated>2006-04-30T19:08:52Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Team */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* compiling ES on Linux systems&lt;br /&gt;
* supplying work to every member of the team&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* cannot open projects in ES (waiting for new release/build)&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on WinXP&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [http://eiffelsoftware.origo.ethz.ch/index.php/User:Chr1s Christoph Lins] (project leader)&lt;br /&gt;
* Andreas Hasler &lt;br /&gt;
* Timon Hertli (working on editor based wizard execution)&lt;br /&gt;
* Peter von Rohr &lt;br /&gt;
* David Flatz &lt;br /&gt;
* Damien Müllhaupt &lt;br /&gt;
* Patricio Ronc&lt;br /&gt;
&lt;br /&gt;
if you have questions or constructive criticism concerning our project and this wiki-page then write an Email to the project leader or to all members: es-wiz _@_ origo _._ ethz _._ ch&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=User:Chr1s&amp;diff=2431</id>
		<title>User:Chr1s</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=User:Chr1s&amp;diff=2431"/>
				<updated>2006-04-30T19:02:57Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Who? :: Christoph Lins&lt;br /&gt;
* Where? :: Liechtenstein &lt;br /&gt;
* Why? :: working as [http://eiffelsoftware.origo.ethz.ch/index.php/Advanced_Class_and_Feature_Wizard project] leader instructed by Volkan Arslan&lt;br /&gt;
&lt;br /&gt;
contact: christoph '.' lins 'at' gmail '.' com&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2430</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2430"/>
				<updated>2006-04-30T19:01:06Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* compiling ES on Linux systems&lt;br /&gt;
* supplying work to every member of the team&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
&lt;br /&gt;
* cannot open projects in ES (waiting for new release/build)&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on WinXP&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [http://eiffelsoftware.origo.ethz.ch/index.php/User:Chr1s Christoph Lins] (project leader)&lt;br /&gt;
* Andreas Hasler &lt;br /&gt;
* Timon Hertli (working on editor based wizard execution)&lt;br /&gt;
* Peter von Rohr &lt;br /&gt;
* David Flatz &lt;br /&gt;
* Damien Müllhaupt &lt;br /&gt;
* Patricio Ronc&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2427</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2427"/>
				<updated>2006-04-30T18:57:46Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Team */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* compiling ES on Linux systems&lt;br /&gt;
* supplying work to every member of the team&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on WinXP&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* [http://eiffelsoftware.origo.ethz.ch/index.php/User:Chr1s Christoph Lins] (project leader)&lt;br /&gt;
* Andreas Hasler &lt;br /&gt;
* Timon Hertli &lt;br /&gt;
* Peter von Rohr &lt;br /&gt;
* David Flatz &lt;br /&gt;
* Damien Müllhaupt &lt;br /&gt;
* Patricio Ronc&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=User:Chr1s&amp;diff=2426</id>
		<title>User:Chr1s</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=User:Chr1s&amp;diff=2426"/>
				<updated>2006-04-30T18:56:50Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Who? :: Christoph Lins&lt;br /&gt;
* Where? :: Liechtenstein &lt;br /&gt;
* Why? :: working as [http://eiffelsoftware.origo.ethz.ch/index.php/Advanced_Class_and_Feature_Wizard project] leader instructed by Volkan Arslan&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=User:Chr1s&amp;diff=2425</id>
		<title>User:Chr1s</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=User:Chr1s&amp;diff=2425"/>
				<updated>2006-04-30T18:56:19Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Who? :: Christoph Lins&lt;br /&gt;
* Where? :: Liechtenstein &lt;br /&gt;
* Why? :: working as [http://eiffelsoftware.origo.ethz.ch/index.php/Advanced_Class_and_Feature_Wizard link project] leader instructed by Volkan Arslan&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2424</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2424"/>
				<updated>2006-04-30T18:49:41Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Work */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
Right now, we are occupied with:&lt;br /&gt;
&lt;br /&gt;
* compiling ES on Linux systems&lt;br /&gt;
* supplying work to every member of the team&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on WinXP&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* Christoph Lins (project leader)&lt;br /&gt;
* Andreas Hasler &lt;br /&gt;
* Timon Hertli &lt;br /&gt;
* Peter von Rohr &lt;br /&gt;
* David Flatz &lt;br /&gt;
* Damien Müllhaupt &lt;br /&gt;
* Patricio Ronc&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2421</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2421"/>
				<updated>2006-04-30T18:44:10Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Work */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
==TO-DO==&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on WinXP&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* Christoph Lins (project leader)&lt;br /&gt;
* Andreas Hasler &lt;br /&gt;
* Timon Hertli &lt;br /&gt;
* Peter von Rohr &lt;br /&gt;
* David Flatz &lt;br /&gt;
* Damien Müllhaupt &lt;br /&gt;
* Patricio Ronc&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2419</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2419"/>
				<updated>2006-04-30T18:42:47Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Work=&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on WinXP&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* Christoph Lins (project leader)&lt;br /&gt;
* Andreas Hasler &lt;br /&gt;
* Timon Hertli &lt;br /&gt;
* Peter von Rohr &lt;br /&gt;
* David Flatz &lt;br /&gt;
* Damien Müllhaupt &lt;br /&gt;
* Patricio Ronc&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2418</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2418"/>
				<updated>2006-04-30T18:41:27Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* M1: April 30, 2006 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
* editing wikipage&lt;br /&gt;
* ES compiled on WinXP&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* Christoph Lins (project leader)&lt;br /&gt;
* Andreas Hasler &lt;br /&gt;
* Timon Hertli &lt;br /&gt;
* Peter von Rohr &lt;br /&gt;
* David Flatz &lt;br /&gt;
* Damien Müllhaupt &lt;br /&gt;
* Patricio Ronc&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2417</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2417"/>
				<updated>2006-04-30T18:39:10Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Milestones */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* Christoph Lins (project leader)&lt;br /&gt;
* Andreas Hasler &lt;br /&gt;
* Timon Hertli &lt;br /&gt;
* Peter von Rohr &lt;br /&gt;
* David Flatz &lt;br /&gt;
* Damien Müllhaupt &lt;br /&gt;
* Patricio Ronc&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2416</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2416"/>
				<updated>2006-04-30T18:38:40Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
* combobox for post- and precondition&lt;br /&gt;
* pick &amp;amp; drop&lt;br /&gt;
* undo/redo functionality within the wizard&lt;br /&gt;
* docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
* update permanently the editor while using the wizard&lt;br /&gt;
* tooltips which provides help&lt;br /&gt;
* beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* Christoph Lins (project leader)&lt;br /&gt;
* Andreas Hasler &lt;br /&gt;
* Timon Hertli &lt;br /&gt;
* Peter von Rohr &lt;br /&gt;
* David Flatz &lt;br /&gt;
* Damien Müllhaupt &lt;br /&gt;
* Patricio Ronc&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2415</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2415"/>
				<updated>2006-04-30T18:38:27Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
* editor based wizard execution&lt;br /&gt;
 * combobox for post- and precondition&lt;br /&gt;
 * pick &amp;amp; drop&lt;br /&gt;
 * undo/redo functionality within the wizard&lt;br /&gt;
 * docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
 * update permanently the editor while using the wizard&lt;br /&gt;
 * tooltips which provides help&lt;br /&gt;
 * beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* Christoph Lins (project leader)&lt;br /&gt;
* Andreas Hasler &lt;br /&gt;
* Timon Hertli &lt;br /&gt;
* Peter von Rohr &lt;br /&gt;
* David Flatz &lt;br /&gt;
* Damien Müllhaupt &lt;br /&gt;
* Patricio Ronc&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2414</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2414"/>
				<updated>2006-04-30T18:38:13Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
 * editor based wizard execution&lt;br /&gt;
 * combobox for post- and precondition&lt;br /&gt;
 * pick &amp;amp; drop&lt;br /&gt;
 * undo/redo functionality within the wizard&lt;br /&gt;
 * docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
 * update permanently the editor while using the wizard&lt;br /&gt;
 * tooltips which provides help&lt;br /&gt;
 * beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* Christoph Lins (project leader)&lt;br /&gt;
* Andreas Hasler &lt;br /&gt;
* Timon Hertli &lt;br /&gt;
* Peter von Rohr &lt;br /&gt;
* David Flatz &lt;br /&gt;
* Damien Müllhaupt &lt;br /&gt;
* Patricio Ronc&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2413</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2413"/>
				<updated>2006-04-30T18:37:07Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* M1: May ??? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
 - editor based wizard execution&lt;br /&gt;
 - combobox for post- and precondition&lt;br /&gt;
 - pick &amp;amp; drop&lt;br /&gt;
 - undo/redo functionality within the wizard&lt;br /&gt;
 - docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
 - update permanently the editor while using the wizard&lt;br /&gt;
 - tooltips which provides help&lt;br /&gt;
 - beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==M1: April 30, 2006 ==&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* Christoph Lins (project leader)&lt;br /&gt;
* Andreas Hasler &lt;br /&gt;
* Timon Hertli &lt;br /&gt;
* Peter von Rohr &lt;br /&gt;
* David Flatz &lt;br /&gt;
* Damien Müllhaupt &lt;br /&gt;
* Patricio Ronc&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	<entry>
		<id>https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2412</id>
		<title>Advanced Class and Feature Wizard</title>
		<link rel="alternate" type="text/html" href="https://dev.eiffel.com/index.php?title=Advanced_Class_and_Feature_Wizard&amp;diff=2412"/>
				<updated>2006-04-30T18:35:48Z</updated>
		
		<summary type="html">&lt;p&gt;Chr1s: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
&lt;br /&gt;
=Overview=&lt;br /&gt;
&lt;br /&gt;
As a summary we could say that we improve the usability of the most important wizards, e.g. classwizard and featurewizard, by adding new features, extending the user interface and simplifying the handling.&lt;br /&gt;
&lt;br /&gt;
Following the priority list of our project, beginning with the most important aspect of our work&lt;br /&gt;
&lt;br /&gt;
 - editor based wizard execution&lt;br /&gt;
 - combobox for post- and precondition&lt;br /&gt;
 - pick &amp;amp; drop&lt;br /&gt;
 - undo/redo functionality within the wizard&lt;br /&gt;
 - docking the wizard in a fixed window - not a pop-up anymore&lt;br /&gt;
 - update permanently the editor while using the wizard&lt;br /&gt;
 - tooltips which provides help&lt;br /&gt;
 - beginner-tour&lt;br /&gt;
&lt;br /&gt;
=Milestones=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==M1: May ??? ==&lt;br /&gt;
&lt;br /&gt;
To be filled&lt;br /&gt;
&lt;br /&gt;
=Team=&lt;br /&gt;
&lt;br /&gt;
* Christoph Lins (project leader)&lt;br /&gt;
* Andreas Hasler &lt;br /&gt;
* Timon Hertli &lt;br /&gt;
* Peter von Rohr &lt;br /&gt;
* David Flatz &lt;br /&gt;
* Damien Müllhaupt &lt;br /&gt;
* Patricio Ronc&lt;/div&gt;</summary>
		<author><name>Chr1s</name></author>	</entry>

	</feed>