How does this read for the user's guide? Chuck, note the last paragraph.
\subsection{\#include directives}
\code{\#include} directives are used to include text from outside the template
definition. The text can come from \code{\$placeholder} variables or from
external files. The example below demonstrates use with \code{\$placeholder}
variables.
\begin{verbatim}
#include $myParseText
\end{verbatim}
This example demonstrates its use with external files.
\begin{verbatim}
#include "includeFileName.txt"
\end{verbatim}
By default, included text will be parsed for TemplateServer tags. The keyword
{\bf raw} can be used to mark the text for verbatim inclusion without any tag
parsing.
\begin{verbatim}
#include raw $myParseText
#include raw "includeFileName.txt"
\end{verbatim}
TemplateServer uses its .getFileContents(fileName) method to locate the file to
be included. This method can be overriden in subclasses if you want to modify
or extend its behaviour. It is possible to implement the logic for getting
remote files such as \code{http://myserver.com/file.txt}.
_______________________________________________
Webware-devel mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/webware-devel