Difference between revisions of "Xebra Tutorial"

m (Apache)
 
(21 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
[[Category:Xebra]]
 
[[Category:Xebra]]
 +
[[Xebra About|About]] | [[Xebra Installation|Installation]] |  [[Xebra Documentation|Documentation]] |  [[Xebra Tutorial|Tutorials]] | [[Xebra FAQ|Frequently Asked Questions]]
  
=Create a webapp=
+
 
# Setup an initial Eiffel project for your webapp. For that matter you can use this [https://svn.origo.ethz.ch/eiffelstudio/trunk/Src/framework/web/xebra/tools/scripts/create_website.sh script] which creates all neccesary files. Make sure to assign a free port to your webapp (see also [[Xebra Webapp Config File]]). The webapp has to be created in the same folder that is specified in the servers config file at webapps_root. See [[Xbera Server Config File]] for more information.
+
=Server=
# Run the server and browse to http://localhost/yourwebapp. The server will translate and compile your webapp. Once compiled, you should see a page displaying "Yourwebapp works!".
+
* Run Xebra Server: [[Xebra Server Administration]]
# Create xeb files for your webapp. See [[Xebra Xeb-Files]] for a documentation about xeb files. Note that you have to let the server retranslate your webapp everytime you change xeb-files or add new xeb-files. This can be done by just pressing F5 in the browser. The server automatically detects that the webapp has to be retranslated if it is set to Development Mode (see [[Xebra Server Administration]] for more info).
+
 
# Create the eiffel classes.
+
=Webapp=
 +
* Create a webapp: [[Xebra Create Webapps|Create Webapps]]
 +
* Debug a webapp: [[Xebra Debug Webapp|Debug Webapp]]
 +
* Write a xeb file: [[Xebra Write Xeb File|Write Xeb File]]
 +
* Add XML-RPC support ((xml_rpc is currently disabled)): [[Xebra Create XML-RPC Webapp]]
 +
 
 +
=Extend Xebra=
 +
*Create your own tag libraries: [[Xebra Create Tag Library|Create custom tag library]]

Latest revision as of 07:24, 1 September 2009

About | Installation | Documentation | Tutorials | Frequently Asked Questions


Server

Webapp

Extend Xebra