Difference between revisions of "Xebra Documentation"

(Overview)
(Page)
Line 30: Line 30:
 
</xml>
 
</xml>
 
|
 
|
Defines the controller which should be used for the ''xeb'' page
+
Defines the controller which should be used for the ''xeb'' page.
 
|-
 
|-
 
|
 
|
Line 37: Line 37:
 
</xml>
 
</xml>
 
|
 
|
Declares a region at the specific point in the xeb page
+
Declares a region at the specific point in the ''xeb'' page where including pages can add specific html code.
 
|-
 
|-
 
|
 
|
Line 46: Line 46:
 
</xml>
 
</xml>
 
|
 
|
Defines a region from a template, can only be used inside a page-include tag
+
Can only be used inside a page-include tag. Will insert the content into the templates regions (with the same id). See page-include.
 
|-
 
|-
 
|
 
|
Line 53: Line 53:
 
</xml>
 
</xml>
 
|
 
|
Includes a template
+
Includes an other xeb page. If the included page has declare-region tags they have to be implemented with define-region tags.
 
|-
 
|-
 
|
 
|
Line 60: Line 60:
 
</xml>
 
</xml>
 
|
 
|
If used the page is not transformed to a servlet
+
If used the page is not transformed to a servlet.
 
|}
 
|}
  

Revision as of 08:40, 30 June 2009


Architecture Overview

(img)

  1. The Xebra HTTP Plugin (Apache Module or IIS7 Handler) forwards a request from the HTTP server to the Xebra Server and waits for a response.
  2. The Xebra Server forwards a request to the appropriate web application.


Website Development

A Xebra Web Application consists of two parts: The xeb-files and the controllers. Xeb-files consist of html code with embedded xeb-tags. They are translated to servlets. Controllers are Eiffel classes that connect the servlets to the rest of the Eiffel classes. Features of controllers can be invoked from within a servlet. Typically, web designers create xeb-files with a html editor and at the same time, web developers create controllers to provide business logic to the servlets. The web application is then translated which means that the xeb-files are generated to servlet eiffel classes and the whole webappliation is compiled to an executable file. The translation and compilation of the web application is initiated by the xebra server.

For a step by step guide on how to create a web application see tutorials.

Xebra Libraries

Page

The page libraries consists of the core tags needed for page configuration and composition. The Tags are:

Tag Description
<page:controller class="..." />

Defines the controller which should be used for the xeb page.

<page:declare_region id="..." />

Declares a region at the specific point in the xeb page where including pages can add specific html code.

<page:define_region id="...">
...
</page:define_region>

Can only be used inside a page-include tag. Will insert the content into the templates regions (with the same id). See page-include.

<page:include id="..." />

Includes an other xeb page. If the included page has declare-region tags they have to be implemented with define-region tags.

</page:fragment>

If used the page is not transformed to a servlet.


Example

This example shows the workings of the template framework. It consists of a master page which acts as a template and three different types of usage of this template.

master.xeb

<html>
<page:controller class="DEFAULT_CONTROLLER"/>
<body>
<h1>
<page:declare_region id="greeting" />
</h1>
<page:declare_region id="form" />
</body>
</html>

The master page is "deferred", since there are page:declare_region tags. The translator detects the undefined regions and doesn't generate a servlet from this xeb file.

slave1.xeb

<page:include template="master">
<page:define_region id="greeting">
Hello, I'm Slave 1
</page:define_region>
<page:define_region id="form">
Other region
</page:define_region>
</page:include>

slave1.xeb uses master.xeb as a template and includes it via the page-include tag. Since master.xeb declares two regions, slave1 defines them. The content of the define-region tags are inserted at the locations of the respective declare-region tags of the template. From this xeb file a servlet is generated. Additionally since it's not declaring any controller all controller calls are redirected to the ones in the template.

slave2.xeb

<page:include template="master"
<page:define_region id="form">
Other region 2
</page:define_region>
</page:include>

Templates can also be just imported partially. In slave2.xeb just the "form"-part of the template is implemented. This means that slave2.xeb is itself a template and will not be translated to a servlet.

slave3.xeb

<page:include template="slave2.xeb">
<page:define_region id="greetings">
</page:define_region>
</page:include>

This last example uses slave2.xeb as a template, which has one remaining region to implement: "greetings. The controller is still inherited from master.xeb, that is, controllers are transitive.

With these techniques we would be able to minimize duplicated code and hence errors in the xeb files, which are difficult to debug.

Xeb

Tag Description
<xeb:call feature="..." />

Calls the feature on the controller on render-time.

<xeb:loop times="..." >
...
</xeb:loop>

Loops its content "times" times.

<xeb:redirect url="..." />

Redirects the server to a new page at "url". The redirect is done server internally.

<xeb:iterate list="..." variable="..." type="...">
</xeb:iterate>

Iterates over a list (defined with "list" as a controller call). The current item is stored in "variable" which is of type "type".

<xeb:container>
...
</xeb:container>

This simple tag just groups parts of the site. Can be used to conditionally render some parts with the "render" attribute.

Form