Eh! - html page layout !
(c)'97-98 Arnaud BERCEGEAY

*****************************************************************
                       ENGLISH VERSION
*****************************************************************

To get an english version of Eh!, just copy the file
EH.RSC (the one in the english folder) in the main
directory of Eh!. That will overwrite the original RSC
file (which is the french version).

    Enjoy !

*****************************************************************

The whole documentation is in french. So, here is a summary :

Eh! What's for ?
^^^^^^^^^^^^^^^^
  The aim of Eh! is to help you writing html file if, as me,
  you did them with a simple text editor.
  Eh! can add head and foot to your html file.

How ?
^^^^^
  So, you did you html-file, and you wish to add a head line
  (your logo, for example), and a foot line (with you e-mail for
  example).
  
  So you have 3 files :
  - Your html code
  - a file containing the head
  - a file containing the foot
  
  Eh! will scan your html files, and insert the head file just after
  the <body> tag, and the foot-file just before the </body> tag.

An example
^^^^^^^^^^
  Here is the html-file :
  <html>
    <head>
      <title>Eh!</title>
    </head>
    <body>
      Bonjour!
    </body>
  </html>
  
  The head file :
  <center><img src="logo.gif"></center>
  <hr>
  
  the foot-file :
  <hr><a href="mailto:me@labas">e-mail me !</a>
  
  The html file become :
  <html>
    <head>
  <!--EhBH-->
  <center><img src="logo.gif"></center>
  <hr>
  <!--EhEH-->
      <title>Eh!</title>
    </head>
    <body>
      Bonjour!
  <!--EhBF-->
  <hr><a href="mailto:me@labas">e-mail me !</a>
  <!--EhEF-->
    </body>
  </html>
  
  Commments <!--Ehxx--> are here to tell the text between them
  is a file included by Eh!, so that Eh! could delete or replace it
  in the future.
  
Let's go
^^^^^^^^
  You can do the job on just a file, some selected files, or even
  a whole web site.
  To start, put the file to be converted on the application.
  
  The file could be a html file (*.htm or *.html)
  In that case, you can specify if you want Ah! to do a recursion on
  others file referenced by this file. This a very simple way to converted
  a whole web site using the home page.
  
  The file could be a qpj file (*.qpj)
  This file is considerated as a list of file. It can be very easily
  generated by qed (it's qed project file). This is an ascii file,
  whith the full name of htm-file on each line, separated by CR + LF.
  Let's have a look at Eh! documentation : there's a lot of examples.
  
Other option
^^^^^^^^^^^^
  Make .dup file
  This is a safe way : all original html file are renamed with '.dup'
  as new extension.
  
  Open stdout windows
  If yes, a windows will be opened on the begining of the work,
  and diplayed all Ah! do : the name of the file already converted,
  the file which is converted, maybe some error- or warning- messages.
  
  Create a resultat.txt file
  An ascii text will be created in the main directory of Ah!
  It contain all that should be displayed on the stdout window.

Break !
^^^^^^^
  To interrupt the work, just close the windows which display
   +------------------------+
   +------------------------+
   |      converting        |
   |   d:\dir1\file.html    |
   +------------------------+

What's else ?
^^^^^^^^^^^^^
  Eh! is FREEWARE !   USE IT AT YOUR OWN RISK !!!!!
  If you find Ah! usefull, think about a missing function you'd like
  Eh! to do, or if you didn't use it because it didn't work, please,
  let's me know about that : just e-mail me !
  
Contact me !
^^^^^^^^^^^^
  My name : Arnaud BERCEGEAY
  e-mail  : arnaud.bercegeay@wanadoo.fr
  web     : http://perso.wanadoo.fr/arnaud.bercegeay/

Other stuff
^^^^^^^^^^^
  Eh! is a part of a package called "Le Pach!"
  Let's have a look at my web site for more details.

-EOF-