===== DESCRIPTION =====

Orgadoc is a tool to organize you documents. Is goal is not to provide a 
full web access with database but to give possibility to everyone to have a 
copy of the database on this computers without having to install a web server 
or database.

Orgadoc includes a research tools (with regexp support), and multiple 
output backend with templates support : static html, latex, bibtex. An output 
of the html output is available at : http://docs.happycoders.org/html/

===== USE =====

Use is very easy : a xml file per directory describing all documents 
of this directory.

===== USE of CGI =====
the cgi read a variable 'query'.
Here is a example of HTML form to use with this cgi :

<FORM ACTION="cgi-bin/orgadoc_cgi" xmethod="PRE">
<P>Regexp search :
<INPUT NAME="query" SIZE="10">
<INPUT TYPE="SUBMIT" VALUE="Search">
</FORM>

===== EXAMPLE =====

Here is a example of readme.xml file :
<?xml version="1.0"?>
<readme>
  <document>
    <comment>	
      <author_name>Julien Lemoine</author_name>
      <content>This is a comment</content>
    </comment>
    <comment>	
      <author_name>Julien Lemoine</author_name>
      <content>Second comment</content>
    </comment>
  </document>
</readme>

here is a example of command :
  orgadoc -r -p /var/www/docs -w -e /tmp

===== FRENCH NOTES =====
You can add "accents" in your xml file, here is a summary :

 : &Acirc;
 :&acirc;
 : &AElig;
 : &aelig;
 : &Agrave;
 : &agrave;
 : &Ccedil;
 : &ccedil;
 : &Eacute;
 : &eacute;
 : &Ecirc;
 : &ecirc;
 : &Egrave;
 : &egrave;
 : &Euml;
 : &euml;
 : &Icirc;
 : &icirc;
 : &Iuml;
 : &iuml;
 : &Ocirc;
 : &ocirc;
 : &Ouml;
 : &ouml;
 : &Ugrave;
 : &ugrave;
 : &Ucirc;
 : &ucirc;
 : &Uuml;
 : &uuml;
