This package contains the prototype GenSQL library and a demonstration
CGI application. 

Prerequisites:
= 32-Bit Linux (Tested on Ubuntu 8.10)
= MySQL 5.0 or higher
= Clean 2.2 (clm must be on your search path)
= A CGI supporting webserver (Tested with apache 2)

Installation:
= Setup the database
 - create a new MySQL database.
 - create the tables in the database by loading the file demo/PM.sql into the just created database.
 - open the file demo/PM.icl and set the database name and credentials on lines 12-16 for your database.
= Compile the demo and libraries
 - simply run "make" in this directory (an executable demo/PM is built)
= Add the PM demo program to your webserver (in case of apache2)
 - create a new alias for 127.0.0.1 in /etc/hosts. For example "pm-demo"
 - create a new virtual host file in /etc/apache2/sites-available also called "pm-demo" containing:
<VirtualHost *>
	ServerName pm-demo
	ScriptAliasMatch (.*) /PATH TO THE GENSQL PROTOTYPE DIR/demo/PM
</VirtualHost>
 - load the virtualhost into apache using the command "a2ensite pm-demo"
 - reload apache using the command "apache2ctl graceful"
= Run the application
 - start a browser and go to http://pm-demo/
