<divclass="focus"align="center">This section contains some deprecated information. Documentation is currently being rewritten and will soon be available.</div>
<p>A gen-class may inherit from another gen-class. Suppose you work as director of human resources in a company and you need to measure employee productivity. Incredible but true: you are also a Python programmer. So you start developing a small application for managing employees. Although you are a director, you have reached a high level of wisdom (maybe due to the fact that you program in Python). So you know that there are two kinds of employees: those that work and those that don't. You decide to create 2 different classes to reflect this:</p>
<p>Indeed, evaluating productivity on persons that do not work has no sense. Because both <spanclass="code">Person</span>s and <spanclass="code">Worker</span>s are specified with <spanclass="code">root=True</span>, they become key concepts and you can create instances of both classes through the dashboard:</p>
<palign="center"><imgsrc="img/inherit1.png"></p>
<p>The "edit" view for creating a person looks like this:</p>
<palign="center"><imgsrc="img/inherit2.png"></p>
<p>The "edit" view for creating a worker looks like this:</p>
<palign="center"><imgsrc="img/inherit3.png"></p>
<p>After a while, you become anxious about having 95% of the data in your database (=<spanclass="code">Person</span> instances) serving absolutely no purpose. Logically, you decide to register the hair color for every non-worker. You realize that you need to change your model to be able to do this:</p>
<p>With this new model, class <spanclass="code">Person</span> serves the single purpose of defining fields which are common to <spanclass="code">Worker</span>s and <spanclass="code">Parasite</span>s. It has no sense to create <spanclass="code">Person</span> instances anymore, so it becomes <i>abstract</i>. Specifying classes as abstract is as simple as adding <spanclass="code">abstract=True</span> in the class definition. There is no specific Python construct for declaring classes as abstract. With this new model, the dashboard evolves:</p>
<palign="center"><imgsrc="img/inherit4.png"></p>
<p>While the "edit" view is left untouched for workers, it evolves for parasites:</p>
<palign="center"><imgsrc="img/inherit5.png"></p>
<p>After a while, you become so excited about encoding hair colors that you would like to encode it even before encoding a parasite's name and first name. You have noticed that with gen, order of fields within the "edit" and "consult" views follows order of field declarations in the corresponding gen-classes; furthermore, fields defined in child classes appear after the fields defined in parent classes. Fortunately, the "move" parameter allows to change this default setting. Changing the <spanclass="code">Parasite</span> class this way produces the desired result:</p>
<p>When defining a gen-class, some method names are reserved. Until now, we have already encountered the method <bclass="code">onEdit</b>, like in this example:</p>
<p>This method is called by gen every time an instance of <spanclass="code">Person</span> is created (be it through-the-web or through code --yes, at present we have only created instances through-the-web; it is also possible to do it through code like explained below) or modified. Besides the <spanclass="code">self</span> parameter (which is the newly created or modified instance), the method has one boolean parameter, <spanclass="code">created</span>. When an object is newly created, <spanclass="code">created=True</span>. When the object is modified, <spanclass="code">created=False</span>. Note that the method is not called when an object is modified through code (else it could lead to infinite recursion). In the example, the title of a person is updated from its name and first name every time it is created or modified.</p>
<p>Another special method is named <bclass="code">validate</b>. While the field-specific <spanclass="code">validators</span> are used for validating field values individually, the <spanclass="code">validate</span> method allows to perform "inter-field" validation when all individual field validations have succeeded. Consider this extension of class <spanclass="code">Parasite</span>:</p>
errors.firstName = "Flashy Gerards are disgusting."<br/>
</p>
<p>Besides the <spanclass="code">self</span> parameter, the <spanclass="code">validate</span> method has 2 parameters: <spanclass="code">new</span> is an object containing new values entered by the user for every visible field of the currently displayed page; <spanclass="code">errors</span> is an empty object waiting for your action. Every time you consider that a field has not the right value, feel free to add, to the <spanclass="code">errors</span> object, a new attribute whose name is the name of the erroneous field and whose value is either a text message or simply a boolean value. In the latter case, gen will render the standard error message for that field (more about error messages below). In the above example, you, as a director, felt that people whose first name is Gerard and whose hair color is too flashy are simply not allowed to work in your company. Trying to encode such a disgusting person would lead to this screen:</p>
<p>By the way, I have changed class <spanclass="code">Person</span> such that the field <spanclass="code">name</span> is now mandatory (<spanclass="code">name = String(multiplicity=(1,1))</span>). So I can show you now that inter-field validation is only triggered when all individual field validations succeed. Check what happens if you don't give Gerard a name:</p>
<p>The <spanclass="code">validate</span> method didn't come into play (yet...).</p>
<h1><aname="integrationWithPod"></a>Integration with pod</h1>
<p><ahref="pod.html">pod (Python Open Document)</a> is another component that is part of the Appy framework. It allows to produce documents from data available to Python code. Guess what? gen is tightly integrated with pod! Until now, gen allows us to produce "web" (edit and consult) views from gen-classes. Through pod, we will now create "document" views from gen-classes, like ODT, PDF, Doc or RTF documents.</p>
<p>Let's begin with the "hello world" pod-gen integration. Suppose you want to produce a document from a given gen-class, let's say the class <spanclass="code">Person</span>. In this class, simply add the declaration <spanclass="code">pod=True</span>. Re-generate your product, re-install it through Plone (Site setup) and go the configuration panel for your application. Go to the default flavour: a new tab "document generation" has been added:</p>
<palign="center"><imgsrc="img/genpod1.png"></p>
<p>Now, create this beautiful document with your favorite word processor and save it as "helloWorld.odt":</p>
<palign="center"><imgsrc="img/genpod2.png"></p>
<p><spanclass="code">self.title</span> must be typed while the word processor is in mode "record changes". Now, go back to your browser and click on the "plus" icon for associating the POD template you just created to the class <spanclass="code">Person</span>:</p>
<palign="center"><imgsrc="img/genpod3.png"></p>
<p>Save this and go to the consult view of a <spanclass="code">Person</span>. In the example below, I am on the consult view of a worker:</p>
<palign="center"><imgsrc="img/genpod4.png"></p>
<p>The list of available documents one may generate from this person are visible in the top-right corner of the consult view. Here, only one document may be generated: "Secret file". Click on it and you will get this file:</p>
<palign="center"><imgsrc="img/genpod5.png"></p>
<p>You have noticed that a class inherits from POD templates defined in its parents: the "Secret file" template was defined for class <spanclass="code">Person</span> and is available for <spanclass="code">Worker</span> and <spanclass="code">Parasite</span> instances. Let's add another POD template that we will build specifically for parasites. First, add <spanclass="code">pod=True</span> in the class <spanclass="code">Parasite</span>. Please add also another field to parasites (a String in XHTML format): it will allow to illustrate how to render such a field in a document. So add this line to class <spanclass="code">Parasite</span>:</p>
<p>Create this POD template and associate it to class <spanclass="code">Parasite</span> in the default flavour:</p>
<palign="center"><imgsrc="img/genpod7.png"></p>
<p>With OpenOffice, create a note by selecting Insert->Note in the menu. The "document generation" tab in the flavour should now look like this:</p>
<palign="center"><imgsrc="img/genpod8.png"></p>
<p>From any parasite, it is now possible to generate 2 documents:</p>
<palign="center"><imgsrc="img/genpod9.png"></p>
<p>Clicking on "gossips" wil produce this file:</p>
<palign="center"><imgsrc="img/genpod10.png"></p>
<p>Exhaustive documentation about writing POD templates may be found on this site (start <ahref="pod.html">here</a>). You have noticed that the set of POD templates associated to a given class is specific to a given flavour. Although a POD template is associated to a class, the POD template may render a lot of information coming from a complex web of interrelated objects. Indeed, the object that is referred to as <spanclass="code">self</span> in the POD template is only a starting point. Our example doesn't allow to illustrate this because we have a single class which has no <spanclass="code">Ref</span> fields. That said, in the future we will also provide the possibility to define POD templates for rendering dashboard views. The starting point here will not be a single instance but the list of objects that is currently displayed in the dashboard.</p>
<p>What you need to know when using pod with gen is the exact <i>pod context</i> (ie the set of Python objects, variables, modules, etc) that is given by gen to your pod template. The table below presents all entries included in it.</p>
<td>The object that is the starting point for this template.</td>
</tr>
<tr>
<tdclass="code">user</td>
<td>The user that is currently logged in. Its id is given by <spanclass="code">user.id</span>.</td>
</tr>
<tr>
<tdclass="code">podTemplate</td>
<td>The POD template (object) that is currently rendered. Attributes of a POD template are: <spanclass="code">title</span>, <spanclass="code">description</span>, <spanclass="code">podTemplate</span> (= the file descriptor to the corresponding ODT POD template), <spanclass="code">podFormat</span> (the output format, a string that may be <spanclass="code">odt</span>, <spanclass="code">pdf</span>, <spanclass="code">doc</span> or <spanclass="code">rtf</span>).
</td>
</tr>
<tr>
<tdclass="code">projectFolder </td>
<td>A string containing the absolute path of the folder where your gen-application resides on disk. If your gen-application is a folder hierarchy, <spanclass="code">projectFolder</span> is the root folder of it.</td>
<p>In the previous examples, we have always rendered documents in <spanclass="code">Odt</span> format. When generating ODT, gen and pod do not need any other piece of software. If you configure a template for generating documents in <b>Adobe PDF (<spanclass="code">Pdf</span>)</b>, <b>Rich Text Format (<spanclass="code">Rtf</span>)</b> or <b>Microsoft Word (<spanclass="code">Doc</span>)</b>, you will need to run OpenOffice in server mode. Indeed, for producing any of these formats, pod will generate, from your POD template, an ODT file and will ask OpenOffice to convert it into PDF, DOC or RTF. Suppose you modify the ODT template named "Gossips" for producing documents in PDF instead of ODT (in the config, default flavour, tab "document generation", edit the template named "gossips" and choose "Pdf" as "Pod format"). If now you go back to the consult view for a parasite, the PDF icon will show up for the template "Gossips":</p>
<palign="center"><imgsrc="img/genpod11.png"></p>
<p>If you click now on "Gossips", gen will produce an error page because he can't connect to OpenOffice. Please run it now as explained <ahref="podRenderingTemplates.html">here</a> (section "Launching OpenOffice in server mode"). If now you retry to generate gossips, you will probably have an error again. Why? 2 main causes: (1) The Python interpreter that runs your Zope and Plone does not include the OpenOffice connectors (="UNO"); (2) You did not run OpenOffice on port 2002 which is the port configured by default in any gen-application. For solving both problems, any configuration panel of any gen-application allows you to configure 2 parameters. In the portlet of your gen-application, click on the hammer and then on the pen that lies besides the title of the application:</p>
<palign="center"><imgsrc="img/genpod12.png"></p>
<p>In this example, the Python interpreter that runs my Zope is not UNO-compliant. So I have specified, in parameter "Uno enabled python", the path of such an interpreter. My machine runs Ubuntu: the interpreter installed at <spanclass="code">/usr/bin/python</span> is UNO-enabled. If you don't have Ubuntu, the simplest way is to specify the path to the UNO-enabled Python interpreter that ships with OpenOffice. When clicking on "Save", if the specified path does not correspond to an UNO-enabled Python interpreter, you will get a validation error. Change the OpenOffice port if necessary; now, when trying to get PDF gossips it should work.</p>
<p>Until now, we have uploaded POD templates in the configuration panel (for a given flavour). It is also possible to specify "file-system" POD templates through code. In fact, it is even the default behaviour. When declaring a class with <spanclass="code">pod=True</span>, when (re-)installing the application, gen will check on the file system if a POD template exists for this class. If yes, it will already load it. If no, it simply proposes a non-filled widget in the flavour that will allow you to upload POD templates through-the-web (this is what happened in our examples so far). Suppose that the class <spanclass="code">Parasite</span> lies in <spanclass="code">/home/gde/ZopeInstance1/lib/python/ZopeComponent.py</span>. Move your file <spanclass="code">gossips.odt</span> to <spanclass="code">/home/gde/ZopeInstance1/lib/python/Parasite.odt</span>. In the flavour, remove the existing ODT template named "Gossips" for class <spanclass="code">Parasite</span>. Now, reinstall you gen-application. In the same folder as where class <spanclass="code">Parasite</span> is defined on the file system, gen finds a file named <spanclass="code"><class_name>.odt</span> (<spanclass="code"><class_name></span> being <spanclass="code">Parasite</span> in this case.) So it will load the corresponding template (for every flavour defined in your gen-application). Now, if you go back to your flavour (tab "document generation"), you will find an ODT template named "Parasite":</p>
<palign="center"><imgsrc="img/genpod13.png"></p>
<p>Instead of writing <spanclass="code">pod=True</span>, you may define a list of names. Remove again the POD template named "Parasite" from the flavour. Then, on the file system, move <spanclass="code">Parasite.odt</span> to <spanclass="code">SordidGossips.odt</span> and copy it also to <spanclass="code">MoreGossips.odt</span> in the same folder. Then, in class <spanclass="code">Parasite</span>, replace <spanclass="code">pod=True</span> with <spanclass="code">pod=['SordidGossips', 'MoreGossips']</span>. Re-generate your Plone product, restart Zope and re-install your gen-application. Now go back to your flavour (tab "document generation"), you should get this:</span></p>
<palign="center"><imgsrc="img/genpod14.png"></p>
<p>When POD templates are loaded from code, only minimalistic information is available for getting the corresponding POD template objects in the flavour: fields <spanclass="code">title</span> and <spanclass="code">podTemplate</span> (=the ODT file) are filled, but field <spanclass="code">description</span> is empty and field <spanclass="code">podFormat</span> is always <spanclass="code">Odt</span>. Although you may now modify all those data through-the-web, in the future gen will allow you to write things like <spanclass="code">pod=[PodTemplate('SordidGossips', format='odt', description='blabla'...),...]</span>. Moreover, new fields will be added to the POD template object in the flavour: a condition and a permission for restricting document generation from an ODT template to some users or under some circumstances; the possibility to define a "freeze event" (when this event occurs --typically a workflow transition--, the generated document is written in the Plone database and subsequent clicks do not compute a new document but simply download the frozen one), etc.</p>
<h1><aname="pagesAndGroups"></a>View layouts into pages and groups</h1>
<p>We already know that for each gen-class, gen creates the web "consult" and "edit" views. We also know from the page <ahref="genCreatingBasicClasses.html">"Creating basic classes"</a>, that both views may be splitted into several pages if the number of widgets becomes too large; on every page, widgets may lie together into groups. It can be accomplished through attributes <spanclass="code">page</span> and <spanclass="code">group</span> that one may define on class attributes.</p>
<p>By default, all widgets are rendered on both edit and consult views on a single page which is named <spanclass="code">main</span> (<spanclass="code">main</span> is the default value for parameter <spanclass="code">page</span>). The default value for parameter <spanclass="code">group</span> is <spanclass="code">None</span>: by default, a widget is not rendered into a group but simply added at the end of the current page.</p>
<p>Let's consider the following example. It is an improved version of the Human Resources software developed by yourself several minutes ago (see above). I have added more fields in order to illustrate how to layout fields into pages and groups.</p>
errors.firstName = "Flashy Gerards are disgusting."<br/>
</p>
<p>Oufti! Let's give some explanations about this bunch of lines. Attributes <spanclass="code">firstName</span>, <spanclass="code">middleInitial</span> and <spanclass="code">name</span> of class <spanclass="code">Person</span> are in group <spanclass="code">name</span> which will be rendered as a table having 3 columns because of the trailing <spanclass="code">_3</span> of <spanclass="code">n = 'name_3'</span>. For those fields, no page was specified; they will be rendered on the first (=<spanclass="code">main</span>) page. When defining several widgets in a group, the shortest way to write it is to define a dictionary (like <spanclass="code">cia</span> or <spanclass="code">cio</span>) containing common parameters (<spanclass="code">page</span> and <spanclass="code">group</span>) and use it with the <spanclass="code">**</span> prefix that "converts" it into parameters (like for attributes <spanclass="code">street</span>, <spanclass="code">number</span>, etc).</p>
<p>Based on this new definition, the "consult" view for a worker looks like this (main tab):</p>
<p>Changing the layout is as simple as changing some details into your class, re-generating and restarting Zope. For example, try to render group "numbers" in 2 columns instead of 3:</p>
<p>Now, for displaying parasites, we can of course reuse some pages and groups from the parent class <spanclass="code">Person</span> and potentially add new pages and/or groups. In our example, attribute <spanclass="code">hairColor</span> was added to the main page, in a new group named <spanclass="code">hairyCharacteristics</span>:</p>
<p>Attribute <spanclass="code">parasiteIndex</span> was put in an existing group of an existing page, while <spanclass="code">avoidAnyPhysicalContact</span> was added to the end of an existing page outside any group:</p>
<p>Tip: try to avoid performing inter-field validation on fields that are not on the same page.</p>
<p>In the future, gen will provide specific Page and Group class descriptors that will allow to go further into the layout customization. For example, you will be able to write things like <spanclass="code">hairColor = String(group=Group('hairyCharacteristics', columns=['50%', '25%', '25%']))</span>.</p>
<h1><aname="toolAndFlavours"></a>The configuration panel (=Tool) and its flavours</h1>
<p>In the <ahref="gen.html">introductory page about gen</a>, we have already introduced the tool and its flavours that are available in any gen-application; at several other places we have also described features involving them. In this section, we will go one step further and describe the tool and its flavours in a more systematic way (or at least give pointers to explanations given in other places).</p>
<p>We will use a gen-application named ZopeComponent.py, which contains the <spanclass="code">ZopeComponent</span> class as defined in <ahref="gen.html">this page</a>, augmented with classes <spanclass="code">Person</span>, <spanclass="code">Worker</span> and <spanclass="code">Parasite</span> as defined above. Here is the portlet for this gen-application: </p>
<p>Before talking about flavours, let's explain the parameters that are directly visible in this page. Those parameters apply throughout your whole gen-application (for all flavours). Parameters in group "Connection to Open Office" are used for connecting Plone to OpenOffice in server mode for producing documents from gen-applications in PDF, DOC or RTF. This is already described <ahref="#integrationWithPod">here</a>. The "number of results per page" is the maximum number of objects that are displayed on any dashboard page. Set this number to "4" (click on the pen besides "ZopeComponent"). Then, go back to the Plone main page (by clicking on the blue tab named "home", for example) and click on the link in the application portlet. If you created more than 4 objects, you will get a screen like this one:</p>
<p>An additional banner in the bottom of the page allows to browse the next/previous objects. Finally, the boolean parameter "Show workflow comment field" allows to display or not a field allowing you to introduce a comment every time you trigger a workflow transition on an object. Workflows and security are covered in more detail in the next page. When enabled (which is the default), on every main page (consult view) of every object you will get a field besides the buttons for triggering transitions, like this:</p>
<p>Clicking on any of these buttons will trigger a transition on the object; if you have entered a comment in the field it will be stored as comment for the transition.</p>
<p>Let's come back to the flavours. As already explained, the tool defines a series of flavours. Every flavour is a given set of configuration options that will apply to a subset of all objects in your application. In order to illustrate this, let's create a second flavour by clicking on the "plus" icon. Name it "Free components":</p>
<p>Indeed, all objects created so far were created for the flavour renamed "Proprietary components". Before entering into the details of flavours, you need to get a more precise explanation about the "dashboard". As you can see from the previous screenshot, the dashboard proposes one "tab" for every "root" class (defined with <spanclass="code">root=True</span>, more info <ahref="genCreatingBasicClasses.html">here</a>) and one tab (named "consult all" by default) for consulting all instances of all root classes. Clicking on the tab of a given root class displays all instances of this class; clicking on the "plus icon" related to this tab brings you to a form that will allow you to create a new instance of this class. Any dashboard page displays a table that contains one row per object. All those tables have at least 2 columns: <spanclass="code">title</span> (object title is also called "name") and "actions" (this column presents actions that one may perform on objects (edit, delete, etc). The example below shows the dashbord page for zope components:</p>
<p>Now let's talk about flavours. Indeed, within a given flavour (in tab "user interface"), you may add new columns to dashboard pages. In this tab, for every root class, a listbox allows you to choose zero, one or more class attributes (this list contains an additional special attribute which represents workflow state) for displaying them into the dashboard. In flavour "Proprietary software", go to the "edit" view of this tab, select the values as shown below (keep the "control" key pressed for selecting multiple values) and click on "save":</p>
<p>When using additional columns this way, the "consult all" tab may also evolve. In fact, if an attribute with a given name is selected as dashboard column for every root class, it will also appear in the tab "consult all". This can be useful when root classes all inherit from a parent class for example.</p>
<p>Every flavour also contains a tab "document generation". A detailed explanation about this tab can be found <ahref="#integrationWithPod">here</a>, so I will not explain it further in this section.</p>
<p>When introducing parameters common to all fields (check <ahref="genCreatingBasicClasses.html">here</a>), we have introduced field <spanclass="code">optional</span>. When a field is defined as <spanclass="code">optional</span>, it may or not be used from flavour to flavour. Let's take an example. Please modify class <spanclass="code">ZopeComponent</span> and add parameter <spanclass="code">optional=True</span> to attributes <spanclass="code">status</span> and <spanclass="code">funeralDate</span>. Re-generate your application, restart Zope and re-install the corresponding Plone product. Now, in every flavour, you have the possibility to use or not those fields. Go for example to flavour "Free components". A new tab "data" appears (it groups all parameters that customize the conceptual model behind your application). Edit this tab and select both fields:</p>
<p>In flavour "Proprietary components", do the same but select only field "status".</p>
<p>In flavour "Free components", for every Zope component, both fields appear (on the "edit" and "consult" views). Here is the consult view, for example:</p>
<p>In flavour "Proprietary components", for every Zope component, the field <spanclass="code">funeralDate</span> does not appear anymore. Here is the edit view, for example:</p>
<p>Making fields <spanclass="code">optional</span> or not has no impact in the Zope database. All fields are always present, but simply hidden in all views if <spanclass="code">optional=False</span>. It means that you may easily change your mind and decide at any time to start using a optional field for a given flavour.</p>
<p>When introducing parameters common to all fields (check <ahref="genCreatingBasicClasses.html">here</a>), we have introduced field <spanclass="code">editDefault</span>. In a lot of situations, we need default values for fields. But in some cases, instead of "hard-coding" the default value (in the Python code) it is preferable to have the possibility to modify this default value throug-the-web. This will happen with gen, on a per-flavour basis, for every field declared with <spanclass="code">editDefault=True</span>: a new widget will appear in every flavour for editing the default value.</p>
<p>Let's illustrate this with an example. For class <spanclass="code">ZopeComponent</span>, add parameter <spanclass="code">editDefault=True</span> to attributes <spanclass="code">description</span> and <spanclass="code">status</span>. Re-generate your application, restart Zope and re-install the corresponding Plone product. Now, in every flavour (tab "data"), widgets were added. Go for example to flavour "Free components" and edit this tab this way:</p>
<h2><aname="customToolAndFlavour"></a>Customizing the Tool and its flavours</h2>
<p>Until now, we have seen all Tool and Flavour attributes managed by gen itself. If you want to add your own attributes, you can also do it. This way, the Tool and its flavours may become the unique configuration panel for your whole application. Beyond some simple configuration options that one may edit through-the-web, one interesting use case justifying tool and flavour customization is the definition, through <spanclass="code">Ref</span> attributes added to your custom Tool or Flavour, of some "global" objects, typically controlled by a limited number of power-users, that are referred to by user-defined, "root-class-like" objects.</p>
<p>Let's illustrate it first by defining a custom <spanclass="code">Tool</span>. We will use our <spanclass="code">ZopeComponent</span> example. Suppose that the company that creates those components is organized into bunches of geeks. Every component is developed under the responsibility of a bunch. We first need a class for defining bunches:</p>
<p>In this tool, I have created a dummy attribute for storing some configuration option as a <spanclass="code">String</span>, and a <spanclass="code">Ref</span> attribute that will, at the Tool level, maintain all bunches defined in our company.</p>
<p>Now please modify class <spanclass="code">ZopeComponent</span> by adding a <spanclass="code">Ref</span> attribute that will allow to assign the component to a given bunch:</p>
<p>Pshhhhhhhhhh! 9 new lines of code, my synapses are melting. Again: re-generate, re-start Zope and re-install the Plone product. Then, go to the Tool: our 2 new attributes are there!</p>
<p>Now, go to the dashboard for flavour "Proprietary components" and edit a given Zope component. In the edit view, a new field allows you to select the responsible bunch. You can choose among your 3 bunches.</p>
<p>Now, go to flavour "Free components" and try to edit a given Zope component. Aaargh! For field "responsible bunch" the selection box is empty! Why? Remember that flavours are a way to partition your application objects into independent sets, each one having its own configuration. But what about instances of <spanclass="code">BunchOfGeek</span>? To what set do they belong? You have found the answer: all objects you define at the <spanclass="code">Tool</span> level (through <spanclass="code">Ref</span> attributes) belong to the "set" defined by the first flavour that gen creates when your gen-application comes to life. It means that bunches of geeks should be defined at the flavour level and not at the tool level. In a lot of situations, though, you will have a single flavour; in this case, all your global objects may reside at the Tool level.</p>
<p>We will now transform our example in order to define bunches of geeks at the flavour level. First, delete from your tool the 3 bunches you have created. Then, move attribute <spanclass="code">bunchesOfGeeks</span> from your custom tool to a new custom Flavour:</p>
<p>Notice an additional small change: within the flavour, the attribute will be present in page <spanclass="code">data</span>, which is one of the default flavour pages. Re-generate, blablah... Then, this page for every <spanclass="code">Flavour</span> will look like this:</p>
<p>Now, let's create 2 bunches for every flavour. Create or edit a Zope component within flavour "Free components". Field "Responsible bunch" will only be filled with the ones you have created within this flavour.</p>
<p>As you may have noticed, the default <spanclass="code">Tool</span> class defines only one page (the <spanclass="code">main</span> page). Feel free to add pages to your custom tool. The default <spanclass="code">Flavour</span> class defines the following pages; within your custom flavour, you may either add fields to those existing pages (like in the previous example) or add your own pages.</p>
<td>All stuff tied to generation of documents from POD templates.</td>
</tr>
<tr>
<tdclass="code">data</td>
<td>Configuration options related to the conceptual model behind your application. Usage of optional fields or default editable values are configured through this page for example.</td>
</tr>
<tr>
<tdclass="code">userInterface</td>
<td>Configuration options related to the way your gen-application looks. Columns displayed in the dashboards are configured here for example.</td>
<p>When defining fields on custom tools and flavours, some parameters have no sense. This is the case for all parameters enabling "configurability", like <spanclass="code">editDefault</span>, <spanclass="code">optional</span>, etc: you can't meta-configure (=configure the configuration). If you try to use those parameters on fields defined on custom tools and flavour they will be ignored by gen.</p>
<p>Now that we know everything about tools and flavours, we may give more precisions about object storage, first introduced in the previous <ahref="genCreatingBasicClasses.html#objectStorage">page</a>. The tool for your application, be it customized or not, corresponds to a Zope object that lies directly within the object corresponding to your Plone site. You may see it from the ZMI:</p>
<p>The name of the <spanclass="code">Tool</span> object is based on your application name. Here, within the Plone <spanclass="code">Appy</span> site, the tool corresponding to the application named <spanclass="code">ZopeComponent</span> is called (=has id) <spanclass="code">portal_zopecomponent</span>. Furthermore, you see that flavours are folders contained within the tool. Every object created through <spanclass="code">Ref</span> fields associated to a tool or flavour will be stored within the folder that corresponds to this tool or flavour. For example, you may verify that bunches of geeks are stored within their corresponding flavour.</p>
<h1><aname="objectsFromCode"></a>Manipulating objects from code</h1>
<p>Until now, we have already encountered several places where we manipulate objects from code (ie within an <spanclass="code">onEdit</span> method) or from POD templates, for, i.e., getting or setting field values. You deserve more explanations about those objects. The truth is: they are not real instances of the classes you define in your application. Why?</p>
<p>"Real" objects are created and managed by Zope (remember: we use Zope as underlying framework). But those objects are complex and squeezed, their interface is ugly and contains an incredible number of methods inherited from dozens of Zope classes. Yes, I know, I am responsible for the choice of Zope for Appy. Understand me: Zope already implements a lot of interesting things like security. In order to preserve Appy developers from Zope complexity I decided to create some nice, simple, minimalistic wrappers around Zope objects. When you manipulate objects, the truth is that you manipulate instances of those wrappers.</p>
<p>The nice news about wrapper classes is that they inherit from your gen-classes. So you are always able to use on objects/wrappers the methods you have defined in your classes. But they also inherit from a wrapper class that inherits itself from other wrappers (like wrappers corresponding to parent classes of your gen-class if relevant) and ultimately from an abstract root <spanclass="code">AbstractWrapper</span> class. If you are curious, you may consult all wrapper definitions which are generated in <spanclass="code">[yourZopeInstance]/Products/[yourApplicatonName]/Extensions/appyWrappers.py</span>.</p>
<p>This "wrapper mechanism" abstracts the Appy developer from the underlying technology. It means that gen could potentially run with other Python-based frameworks than Zope/Plone. The gen architecture is ready for integrating other code generators; but for the moment, only one generator has been written (the Plone generator).</p>
<p>Pragmatically, what you need to know is the following. For every Appy field defined in a gen-class, the corresponding wrapper class contains a Python <i>property</i> (more info <ahref="http://docs.python.org/library/functions.html?highlight=property#property"target="_blank">here</a>) that has the same name, for which a <i>getter</i> function is defined. Every time you write a thing like:</p>
<p>The getter function is triggered behind the scenes and queries the real Zope object for getting the expected result. After it, the function may potentialy adapt the result before giving it to you. In this example, every "Zope" bunch of geeks is wrapped and you get a list of <spanclass="code">BunchOfGeek</span> wrappers. This way, you always manipulate wrappers and you may forget everything about the cruel Zope world.</p>
<p>Doing the same thing on a <spanclass="code">Computed</span> field will trigger the machinery you have defined for computing the field; you will simply get the result!</p>
<p>For setting field values on Zope objects, wrappers override the standard Python method <spanclass="code">__setattr__</span> (more info <ahref="http://docs.python.org/reference/datamodel.html?highlight=__setattr__#object.__setattr__"target="_blank">here</a>; it did not work by defining a <i>setter</i> through on the Python property). Again, when writing things like</p>
<p>field <spanclass="code">title</span> of the corresponding Zope object is updated through a real, behind-the-scenes call to the corresponding Zope method.</p>
<p>If you are an experienced Zope developer and you feel nostalgic about manipulating real Zope objects, or if you believe that in some situations the wrapping mechanism may constitute a potential performance problem, Appy still allows you to manipulate real Zope objects directly. Suppose <spanclass="code">self</span> represents a wrapper; writing </p>
<pclass="code">self.o</span>
<p>gives you the real Zope object. In these pages I will not document Zope objects because I am in the process of trying to forget everything about them.</p>
<p>Beyond getters and setters, Appy wrappers give you plenty of nice attributes and methods for manipulating your objects. The following table shows you available attributes (or Python properties).</p>
<td>From any wrapper, you may access the application tool through this property.</td>
</tr>
<tr>
<tdclass="code">session</td>
<td>Yes</td>
<td>Gives you access to the Zope "session" object. By "writable" I mean you may put things into it (this is a dict-like object), but don't try to replace this object with anything else.</td>
</tr>
<tr>
<tdclass="code">typeName</td>
<td>No</td>
<td>Gives you a string containing the name of the gen-class tied to this object.</td>
</tr>
<tr>
<tdclass="code">id</td>
<td>No</td>
<td>The id of the underlying Zope object.</td>
</tr>
<tr>
<tdclass="code">state</td>
<td>No</td>
<td>The current workflow state of the object (as a string value).</td>
</tr>
<tr>
<tdclass="code">stateLabel </td>
<td>No</td>
<td>The translated label of the current workflow state.</td>
</tr>
<tr>
<tdclass="code">klass</td>
<td>No</td>
<td>The Python class (=gen-class) related to this class. Indeed, because the instances you manipulate in the code inherit from special wrappers, writing <spanclass="code">self.__class__</span> will give you a wrapper class. So write <spanclass="code">self.klass</span> instead.</td>
<td>Creates a new object and links it to this one through <spanclass="code">Ref</span> field having name <spanclass="code">fieldName</span>. Remaining parameters <spanclass="code">**kwargs</span> are used for initialising fields of the newly created object. Here is an example, inspired from the one described above. Suppose that, in every flavour, a bunch of geeks called "Escadron de la mort" must absolutely be present: it includes the best geeks that you use for debugging the most critical Zope components. So every time you create or edit a flavour, you need to ensure that this bunch is there. If not, you will create it automatically. Code for class <spanclass="code">ZopeComponentFlavour</span> must evolve this way:
<b>if</b> 'Escadron de la mort' <b>not in</b> [b.title <b>for</b> b <b>in</b> self.bunchesOfGeeks]:<br/>
self.create('bunchesOfGeeks', title='Escadron de la mort',<br/>
description='I want those guys everywhere!')<br/>
</p>
The <spanclass="code">create</span> method creates the bunch, and appends it to the existing bunches (if any): it does not remove the existing bunches. The <spanclass="code">create</span> method returns the newly created object. In this example I don't need it so I don't put the method result into some variable.
</td>
</tr>
<tr>
<tdclass="code">link</td>
<tdclass="code">fieldName, obj</td>
<td>Links the existing object <spanclass="code">obj</span> to the current one through <spanclass="code">Ref</span> field <spanclass="code">fieldName</span>. Already linked objects are not unlinked. This method is used by method <spanclass="code">create</span> but may also be used independently.</td>
<p>For setting <spanclass="code">Ref</span> fields, please use the <spanclass="code">create</span> and <spanclass="code">link</span> methods instead of the predefined setters which may not work as expected.</p>
<h2>Manipulating tools and flavours from code</h2>
<p><spanclass="code">Tool</span> and <spanclass="code">Flavour</span> objects, be they customized or not, adopt the same "wrapper" mechanism as described above. In this section, we will simply explain how to get/set programmatically the predefined fields that gen generates automatically on tools and flavours. The following table presents the names of the predefined attributes defined on any <spanclass="code">Tool</span>:</p>
<td>The list of flavours defined in this tool.</td>
</tr>
<tr>
<tdclass="code">unoEnabledPython</td>
<td>The path to a potential UNO-enabled Python interpreter (for connecting to Open Office in server mode).</td>
</tr>
<tr>
<tdclass="code">openOfficePort</td>
<td>The port on which OpenOffice runs in server mode.</td>
</tr>
<tr>
<tdclass="code">numberOfResultsPerPage</td>
<td>The maximum number of results shown on any dashboard page.</td>
</tr>
<tr>
<tdclass="code">listBoxesMaximumWidth</td>
<td>The maximum width of listboxes managed by gen (the ones used for displaying the list of objets which are available through <spanclass="code">Ref</span> fields defined with <spanclass="code">link=True</span>, for example).</td>
<p>For flavours, things are a little more complex. Imagine we have, throughout our gen-application, 25 fields parameterized with <spanclass="code">editDefault=True</span> in 6 classes. The corresponding attributes that hold the default values in the flavours have an ugly name that includes the full package name of the class. Instead of forcing you to remember this obscure naming convention, a nice method defined on the <spanclass="code">Flavour</span> class allows to retrieve this attribute name:</p>
<td>This method generates the attribute name based on <spanclass="code">attributeType</span>,
a <spanclass="code">klass</span> from your gen-application, and an <spanclass="code">attrName</span> (given only if needed, for example if <spanclass="code">attributeType</span> is <spanclass="code">defaultValue</span>). <spanclass="code">attributeType</span> may be:<br/><br/>
<table>
<tr>
<tdclass="code">defaultValue</td>
<td>Attribute that stores the editable default value for a given <spanclass="code">attrName</span> of a given <spanclass="code">klass</span></td>
</tr>
<tr>
<tdclass="code">podTemplates</td>
<td>Attribute that stores the POD templates that are defined for a given <spanclass="code">klass</span></td>
</tr>
<tr>
<tdclass="code">resultColumns</td>
<td>Attribute that stores the list of columns that must be shown on the dashboard when displaying instances of a given root <spanclass="code">klass</span></td>
</tr>
<tr>
<tdclass="code">optionalFields</td>
<td>Attribute that stores the list of optional attributes that are in use in the current flavour for the given <spanclass="code">klass</span></td>
</tr>
</table><br/>
Here is an example. Suppose you want to modify programmatically, on a given <spanclass="code">flavour</span>, the list of columns that are shown on the dashboard that present <spanclass="code">ZopeComponent</span>s. You can do it this way:
<p>When choosing field and method names for your gen-classes, try to avoid using names corresponding to fields or methods from base Appy classes (wrappers, tool, flavours).</p>
<h2><aname="install"></a>Defining a custom installation procedure</h2>
<p>When (re-)installing your gen-application, you may want to initialize it with some data or configuration options. You do this by specifying a special <ahref="genCreatingBasicClasses.html#actions">action</a> named <spanclass="code">install</span> on your customized tool, like in the example below (the <spanclass="code">ZopeComponent</span> application).</p>
<p>Re-generate your gen-application, re-start Zope, log in as administrator and go to site setup->Add/Remove products. Your product wil look like this (it needs re-installation):</p>
<p>Moreover, because your installation procedure is an <spanclass="code">action</span>, you may trigger your custom installation procedure via the available "install" button.</p>
<p>Note that actions defined on custom tools or flavours are well suited for importing data or executing migration scripts (so actions may, in a certain sense, represent a way to replace the notion of "profiles" available in Plone. Actions are easier to trigger because they can be displayed anywhere on your tool, flavour or on any gen-class).</p>
<p>gen-applications benefit from an automated support for i18n. How does it work? First of all, you need to declare what language(s) need to be supported in your gen-application. This is done through the creation, anywhere in your gen-application, of an instance of class <spanclass="code">appy.gen.Config</span>:</p>
<p>By configuring your <spanclass="code">Config</span> instance this way, you tell gen to support English and French. If you don't do this, only English is supported by default.</p>
<p>Every time you (re-)generate your gen-application, i18n files are created or updated in the corresponding generated Plone product. With the above settings, gen will generate the following files, in <spanclass="code">[yourZopeInstance]/Products/[yourApplication]/i18n</span> (the product here is named <spanclass="code">ZopeComponent</span>):</p>
<p><spanclass="code">ZopeComponent.pot</span> contains all i18n <i>labels</i> generated for your application, together with their default values (in English). English translations are in <spanclass="code">ZopeComponent-en.po</span>, while French translations are in <spanclass="code">ZopeComponent-fr.po</span>.</p>
<p>The format of these files is quite standard in the i18n world. Le'ts take a look to the beginning of <spanclass="code">ZopeComponent.pot</span>:</p>
<p>An interesting general information here is the domain name (last line) which is <spanclass="code">ZopeComponent</span>. Indeed, Plone structures translations into <i>domains</i>. A domain is a group of translations that relate to a bunch of functionality or to a given Plone component. gen creates a specific domain for every gen-application. In the example, domain <spanclass="code">ZopeComponent</span> has been created. Why do I explain this to you? Really, I don't know. With gen, you don't care about i18n domains, gen manages all this boring stuff for you. Sorry. Mmh. Let's continue to analyse the file. In the (very similar) headers of the English and French translation files (<spanclass="code">ZopeComponent-en.po</span> and <spanclass="code">ZopeComponent-fr.po</span>), the important thing that is filled is the code and name of the supported language (parameters <spanclass="code">Language-code</span> and <spanclass="code">Language-name</span>).</p>
<p>After this header, you will find a list of <i>labels</i>. In the <spanclass="code">pot</span> file, every label is defined like this one:</p>
<p>In every related <spanclass="code">po</span> file, you will find the same entry. Translating a gen-application is as simple as editing, for every <spanclass="code">po</span> file, every <spanclass="code">msgstr</span> line for every i18n label. If you don't fill a given <spanclass="code">msgstr</span>, the default value will be used. You may insert HTML code within <spanclass="code">msgstr</span> entries.</p>
<p>The i18n machinery of Plone works this way: every time Zope/Plone encounters an i18n label in a web page (or part of it), it tries to find, in the language specified by the web browser, a translation in the corresponding <spanclass="code">po</span> file (or a cached version of it; if you change the translations in the <spanclass="code">po</span> files you need to restart Zope or refresh, through the ZMI, the corresponding "catalog object" Zope has created in <spanclass="code">Root Folder/Control_Panel/TranslationService</span>). Plone and Appy-generated web pages do not "hard-code" any translation; they always consult Zope i18n catalog objects. So after having translated all labels in all <spanclass="code">po</span> files, changing your browser language and refreshing a given page will produce the same page, fully translated in the new specified language.</p>
<p>gen creates and maintains <spanclass="code">pot</span> and <spanclass="code">po</span> files itself. So gen implements the same functionality as tools like <i>i18dude</i>. You don't need such tools to manage i18n files of gen-applications. Although i18n files are stored in the generated Plone product, they will never be deleted by triggering a code (re-)generation. gen will potentially complete the files but will never delete them.</p>
<p>Now, you need to know the meaning of every label gen creates and maintains in the po(t) file(s), and at what place(s) they are used within the generated edit and consult views (or in the dashboards, etc). The following table explains this. Dynamic parts used in labels (like <spanclass="code">[className]</span>) are explained in yet another table below. For every label, the default value is specified. For the majority of labels, gen proposes a "nice" default value. For example, field <spanclass="code">responsibleBunch</span> will have default value <spanclass="code">Responsible bunch</span>; class <spanclass="code">BunchOfGeeks</span> will have default value <spanclass="code">Bunch of geeks</span>. The "nice" algorithm tries simply to recognize camel-cased words and separates them.</p>
<td>The label of the Appy field of a given gen-class. It appears on both edit and consult views, as widget label. For example, field <spanclass="code">funeralDate</span> of class <spanclass="code">ZopeComponent</span> in ZopeComponent.py will produce label <spanclass="code">ZopeComponent_ZopeComponent_funeralDate</span>.</td>
<td>A description associated to a given Appy field. It appears on the edit view, between the widget label and the widget. Here is an example of a field shown on an edit view, with a label and description.<br/>
<td>When defining a <spanclass="code">String</span> field with a list of values as <spanclass="code">validator</span>, such a label is created for every value of this list. Consider the following field declaration (in class <spanclass="code">ZopeComponent</span> from ZopeComponent.py):<br/><spanclass="code">status = String(validator=['underDevelopement', 'stillSomeWorkToPerform', 'weAreAlmostFinished', 'alphaReleaseIsBugged', 'whereIsTheClient'])</span>. <br/>gen will generate 5 labels (one for each possible value). The first one will be <spanclass="code">ZopeComponent_ZopeComponent_status_list_underDevelopement</span>.</td>
<td>Error message produced when validation fails on a given field (edit view) and the validation mechanism does not return an error message.</td>
<td>"Please fill or correct this."</td>
</tr>
<tr>
<tdclass="code">[className]_[fieldName]_back</td>
<td>Label of a back reference. Consider the following field definition in class <spanclass="code">ZopeComponent</span>: <br/><spanclass="code">responsibleBunch = Ref(BunchOfGeek, multiplicity=(1,1), add=False, link=True, back=Ref(attribute='components'))</span><br/>
On the consult view related to BunchOfGeek, the label of the back reference for consulting components for which this bunch is responsible for will be <spanclass="code">ZopeComponent_BunchOfGeek_components_back</span>.</td>
<td>Only generated for <spanclass="code">Action</span> fields. Represents the message to display when the action fails.</td>
<td>"A problem occurred while executing the action."</td>
</tr>
<tr>
<tdclass="code">[applicationName]</td>
<td>This unique label translates the name of the application. It is used as title for the application portlet.
</td>
<td>nice</td>
</tr>
<tr>
<tdclass="code">[className]</td>
<td>The name of a gen-class. It appears at several places (dashboard tabs, edit views, ...). This label is then "declined" into several others, suffixed with <spanclass="code">[_flavourNumber]</span> for flavours 2 to <i>n</i>. It means that you may name your concepts differently from one flavour to the other. For example, a class named <spanclass="code">Meeting</span> may be named "Government meeting" in one flavour and "Parliament meeting" in the other.</td>
<td>nice</td>
</tr>
<tr>
<tdclass="code">[className]_edit_descr</td>
<td>The description of a gen-class. It appears on edit views, when creating instances of this class. Like the previous label, this one is then "declined" into several others, suffixed with <spanclass="code">[_flavourNumber]</span> for flavours 2 to <i>n</i>.</td>
<td>empty</td>
</tr>
<tr>
<tdclass="code">[className]_page_[pageName]</td>
<td>This label is used for translating the name of a page which is not the <spanclass="code">main</span> page (the <spanclass="code">main</span> page takes the --translated-- name of the corresponding gen-class). Page names are visible on page tabs. Because this label is prefixed with the <spanclass="coded">className</span>, for every child class of a given class that defines pages, gen will produce an additional label prefixed with the child class name.</td>
<td>This label is used for translating the name of a group, used as label for group fieldsets on both edit and consult views. Because this label is prefixed with the <spanclass="coded">className</span>, for every child class of a given class that defines groups, gen will produce an additional label prefixed with the child class name.</td>
<td>nice</td>
</tr>
<tr>
<tdclass="code">[workflowName]_[stateName]</td>
<td>This label is used for translating the name of a workflow state. Because this label is prefixed with the <spanclass="code">workflowName</span>, for every child workflow of the one that defines the corresponding state, gen will produce an additional label prefixed with the child workflow name.</td>
<td>This label is used for translating the name of a workflow transition. Because this label is prefixed with the <spanclass="code">workflowName</span>, for every child workflow of the one that defines the corresponding transition, gen will produce an additional label prefixed with the child workflow name.</td>
<td>nice</td>
</tr>
<tr>
<tdclass="code">workflow_state</td>
<td>Translation of term "workflow state" (used a.o. if the corresponding column is shown in a dashboard).</td>
<td>"state"</td>
</tr>
<tr>
<tdclass="code">root_type</td>
<td>Translation of term "type" used for the corresponding column on the dashboard tab "consult all".</td>
<td>"type"</td>
</tr>
<tr>
<tdclass="code">workflow_comment</td>
<td>Label of the field allowing to enter comments when triggering a workflow transition.</td>
<td>"Optional comment"</td>
</tr>
<tr>
<tdclass="code">choose_a_value</td>
<td>Translation of the "empty" value that appears in listboxes when the user has not chosen any value.</td>
<td>"- none -"</td>
</tr>
<tr>
<tdclass="code">min_ref_violated</td>
<td>Error message shown when, according to multiplicities, too few elements are selected for a <spanclass="code">Ref</span> field.</td>
<td>"You must choose more elements here."</td>
</tr>
<tr>
<tdclass="code">max_ref_violated</td>
<td>Error message shown when, according to multiplicities, too many elements are selected for a <spanclass="code">Ref</span> field.</td>
<td>"Too much elements are selected here."</td>
</tr>
<tr>
<tdclass="code">no_ref</td>
<td>Text shown when a <spanclass="code">Ref</span> field contains no object.</td>
<td>"No object."</td>
</tr>
<tr>
<tdclass="code">add_ref</td>
<td>Text shown as tooltip for icons that allow to add an object through a <spanclass="code">Ref</span> field.</td>
<td>"Add a new one"</td>
</tr>
<tr>
<tdclass="code">ref_name</td>
<td>When displaying referenced objects for a <spanclass="code">Ref</span> field with <spanclass="code">showHeaders=True</span>, this label translates the title of the first column (=name or title of the referenced object).</td>
<td>"name"</td>
</tr>
<tr>
<tdclass="code">ref_actions</td>
<td>When displaying referenced objects for a <spanclass="code">Ref</span> field with <spanclass="code">showHeaders=True</span>, this label translates the title of the last column (=actions).</td>
<td>"actions"</td>
</tr>
<tr>
<tdclass="code">move_up</td>
<td>Tooltip for the icon allowing to move an element up in a <spanclass="code">Ref</span> field.</td>
<td>"Move up"</td>
</tr>
<tr>
<tdclass="code">move_down</td>
<td>Tooltip for the icon allowing to move an element down in a <spanclass="code">Ref</span> field.</td>
<td>"Move down"</td>
</tr>
<tr>
<tdclass="code">query_create</td>
<td>Text shown as tooltip for icons that allow to create a new root object on a dashboard.</td>
<td>"create"</td>
</tr>
<tr>
<tdclass="code">query_no_result</td>
<td>Text shown when a dashboard or query contains no object.</td>
<td>"Nothing to see for the moment."</td>
</tr>
<tr>
<tdclass="code">query_consult_all</td>
<td>Label of the leftmost dashboard tab (consult all instances of all root classes for a given flavour).</td>
<td>"consult all"</td>
</tr>
<tr>
<tdclass="code">bad_int</td>
<td>General error message displayed when a non-integer value is entered in an <spanclass="code">Integer</span> field.</td>
<td>"An integer value is expected; do not enter any space."</td>
</tr>
<tr>
<tdclass="code">bad_float</td>
<td>General error message displayed when a non-float value is entered in a <spanclass="code">Float</span> field.</td>
<td>"A floating-point number is expected; use the dot as decimal separator, not a comma; do not enter any space."</td>
</tr>
<tr>
<tdclass="code">bad_email</td>
<td>General error message displayed when an invalid email is entered in a <spanclass="code">String</span> field with <spanclass="code">validator=String.EMAIL</span>.</td>
<td>"Please enter a valid email."</td>
</tr>
<tr>
<tdclass="code">bad_url</td>
<td>General error message displayed when an invalid URL is entered in a <spanclass="code">String</span> field with <spanclass="code">validator=String.URL</span>.</td>
<td>"Please enter a valid URL."</td>
</tr>
<tr>
<tdclass="code">bad_alphanumeric</td>
<td>General error message displayed when an invalid alphanumeric value is entered in a <spanclass="code">String</span> field with <spanclass="code">validator=String.ALPHANUMERIC</span>.</td>
<td>"Please enter a valid alphanumeric value."</td>
<td>The name of your gen-application. If your application is a Python package (=a file), it corresponds to the name of the file without its extension (application name for ZopeComponent.py is <spanclass="code">ZopeComponent</span>). If you application is a Python module (=a folder), it corresponds to the name of this folder.</td>
</tr>
<tr>
<tdclass="code">className</th>
<td>Refers to the full package name of a gen-class, where dots have been replaced with underscores. For example, class <spanclass="code">ZopeComponent</span> in ZopeComponent.py will have <spanclass="code">className</span> "ZopeComponent_ZopeComponent". There are 2 exceptions to this rule. <spanclass="code">className</span> for a flavour, be it the default one or a custom class in your gen-application, will always be <spanclass="code">[applicationName]Flavour</span>. In the same way, <spanclass="code">className</span> for a tool will always be <spanclass="code">[applicationName]Flavour</span>.</td>
</tr>
<tr>
<tdclass="code">workflowName</th>
<td>Refers to the full package name of a gen-workflow, where dots have been replaced with underscores and all characters have been <i>lowerized</i>. For example, workflow <spanclass="code">ZopeComponentWorkflow</span> in ZopeComponent.py will have <spanclass="code">workflowName</span> "zopecomponent_zopecomponentworkflow".</td>
</tr>
<tr>
<tdclass="code">fieldName</th>
<td>Refers to the name of an Appy field, declared as a static attribute in a gen-class. For example, attribute <spanclass="code">responsibleBunch</span> of class <spanclass="code">ZopeComponent</span> will have <spanclass="code">fieldName</span> "responsibleBunch".</td>
<p>Although gen tries to manage automatically the whole i18n thing, in some cases you may need to create and use specific labels. You create new labels by adding them "by hand" in the pot file. For example, edit ZopeComponent.pot and add the following label:</p>
#. Default: "Please be honest and do not pretend there is any kind of simplicity in your Zope 3 component."<br/>
<b>msgid</b> "zope_3_is_not_simple"<br/>
<b>msgstr</b> ""
</p>
<p>As part of the generation process, gen synchronizes the pot and po files. So re-generate your product and consult ZopeComponent-fr.po and ZopeComponent-en.po: the label has been added in both files. You may now edit those translations and save the edited po files.</p>
<p>In the following example, we use the new label for producing a translated validation message on a given field.</p>
<p>On any (wrapped) instance of a gen-class, a method named <spanclass="code">translate</span> allows you to translate any <spanclass="code">label</span>. This method accepts 2 parameters: <spanclass="code">label</span> and <spanclass="code">domain</span>. In the example, no value was given for parameter <spanclass="code">domain</span>; it defaults to the application-specific domain (in this case, <spanclass="code">ZopeComponent</span>). Maybe one day you will need to use and translate labels packaged with Plone or another Plone product; in this case you will need to specify another <spanclass="code">domain</span>. The main domain for Plone is named <spanclass="code">plone</span> (case sensitive). For example, "delete" icons in Appy pages have a tooltip corresponding to label "label_remove" defined in domain "plone". If you want to use it, write <spanclass="code">self.translate('label_remove', domain='plone')</span>. Labels in standard Plone domains are already translated in a great number of languages.</p>
<p>Now imagine you need to change the default value for this label in ZopeComponent.pot. It means that your translations in ZopeComponent-fr.po and ZopeComponent-en.po need a potential revision. Edit the default value and re-generate your product. The labels in the po files will be flagged as "fuzzy":</p>
#. Default: "Please be honest and do not pretend there is any kind of simplicity in your Zope 3 component. I changed the default value."<br/>
#, fuzzy<br/>
<b>msgid</b> "zope_3_is_not_simple"<br/>
<b>msgstr</b> "ZOPE 3 n'est pas simple!"<br/>
</p>
<p>Edit the translation, remove the line with "fuzzy" and you are done!</p>
<h1><aname="mastersAndSlaves"></a>Field interactions: masters and slaves</h1>
<p>It is possible to make your gen pages more dynamic by defining relationships between fields belonging to the same page. For example, by selecting a given item in a list (on a <i>master</i> field), another (<i>slave</i>) field may become visible. This is achieved by using parameters <spanclass="code">master</span> and <spanclass="code">masterValue</span>. Let's try it on an example. Remember that, in our HR system, we have added the ability to associate a "parasite index" to a parasite. Suppose that in some cases, the parasite is so weird that you are unable to give him a parasite index. Among the values for field <spanclass="code">parasiteIndex</span>, we add the value <spanclass="code">unquantifiable</span>; but in this case, you must give, in another field, details about why you can't quantify its parasiteness:</p>
<p>Now, if you edit page "contactInformation" for any parasite, selecting, for field <spanclass="code">parasiteIndex</span>, any value excepted "unquantifiable" will give you something like this:</p>
<p>Of course, you may use the validation machinery (method <spanclass="code">validate</span>) and check that, when <spanclass="code">parasiteIndex</span> is "unquantifiable", field <spanclass="code">details</span> is not empty. This will be your exercise for tonight.</p>
<p>Note that master/slaves relationships also modify the "consult" pages. When "unquantifiable" is chosen, both fields are rendered:</p>
<p>A <i>master</i> widget may have any number of <i>slaves</i>. Of course, masters and slaves must be on the same page. For the moment, the only behaviour on slaves is to display them or not. In future gen releases, other ways to persecute slaves will be implemented, like changing default values, adapting the list of possible values, etc). For the moment, only the following fields may become masters:</p>
<ul>
<li>Single-valued lists (<spanclass="code">String</span> fields with max <spanclass="code">multiplicity</span> = 1 and <spanclass="code">validator</span> being a list of string values): this was the case in the previous example). In this case, <spanclass="code">masterValue</span> must be a string belonging to the master's validator list);</li>
<li>Multiple-valued lists (idem, but with max <spanclass="code">multiplicity</span> > 1);</li>
<li>Checkboxes (<spanclass="code">Boolean</span> fields). In this case, <spanclass="code">masterValue</span> must be a boolean value.</li>
</ul>
<p>In future gen releases, <spanclass="code">masterValue</span> will accept a list of values or a single value.</p>
<p>As already mentioned, a series of configuration options for your gen-application may be defined in an instance of class <spanclass="code">appy.gen.Config</span>. There must be only one such instance by gen-application. The following table describes the available options defined as <spanclass="code">Config</span> attributes.</p>
<td>If <spanclass="code">True</span>, this flag will produce a minimalist Plone, where some user interface elements, like actions, portlets or other stuff less relevant for building web applications, are removed or hidden. Using this produces effects on your whole Plone site! This can be interesting on development machines: less visual gadgets make geeks more productive.</td>