HTML INCLUDE SYSTEM - Compatible to HTML-Editor Phase 5 (www.meybohm.de)

Author   : Ulli Meybohm
E-Mail   : ulli@meybohm.de
Homepage : www.meybohm.de
License  : GNU General Public License (See file COPYING)

The HTML Include System is fully compatible with the Include-System
used by the german HTML-Editor Phase 5 that I wrote some time ago
for MS Windows. ( Before I saw the shining light of the GNU\Linux
system). 


INSTALLATION
------------
Type: 
      make
      make install
      

USAGE
-----
Start htmledit without parameters to read the help:
------------------------------------------------------------------------------
HTML INCLUDE SYSTEM Version 1.0 beta1 - Compatible with Phase 5
Copyright (C) 2000 , Ulli Meybohm, www.meybohm.de (GNU General Public License)

Start:    
          htmlinc <include_dir> <htmlfile_1> <htmlfile_2> ... <htmlfile_n>

Options:
          <include_dir> = Directory of the Includefiles
	  <htmlfile_i>  = HTML-Files in which the includes should be updated

Examples:
          1:   htmlinc ~/www/inc/ ~/www/*.html

          2:   cd ~/www
	       htmlinc inc/ `find * | grep \.html`      (recursive)
------------------------------------------------------------------------------


EXAMPLE
-------

You have your html-files in the directory ~/www and you include-files
in the directory ~/www/inc.
You made an include-file for the body-tag, so that you can change the
body-colors once in the includefile "body.inc" and update all the
files automatically with the HTML Include System.

You have for Example these files:

~/www/inc/body.inc:
----------------------
<body text=black bgcolor=white>
----------------------

~/www/index.html:
----------------------
<html>
<!--INC:"body.inc"-->
<body text=black bgcolor=white>
<!--/INC:"body.inc"-->
<h1>Hello World!</h1>
</body>
</html>
----------------------

(Surely , it will only make sense if you have more than
one html-files with this include, so imagine we have 100 more
html-files with this include of the "body.inc" file.)

Now you change the colors in the body-tag in the include-file:

~/www/inc/body.inc:
----------------------
<body text=red bgcolor=black>
----------------------

Then you start "htmlinc" to update the includes in all your
html-files in the directory ~/www:

#cd ~/www
#htminc inc/ *.html
HTML INCLUDE SYSTEM - Updating includes:
index.html
file001.html
file002.html
...
file100.html


Now, every html-file shoud have the new body tag. 

That's all. Have fun with the software.
I know this is a terrible bad documentation but who cares :-)
If you want to see a real homepage that used the Include-system
then take a look to the source of http://www.meybohm.de/htmledit
If you have questions, feel free to ask me : ulli@meybohm.de

Greetings from Giessen/Germany
Ulli Meybohm, www.meybohm.de
Student of Computer Science