Annotation of libwww/Library/src/HTMLGen.html, revision 2.21

2.6       timbl       1: <HTML>
                      2: <HEAD>
2.20      frystyk     3: <TITLE>W3C Reference Library libwww HTML GENERATOR</TITLE>
2.21    ! frystyk     4: <!-- Changed by: Henrik Frystyk Nielsen, 23-Mar-1996 -->
2.8       frystyk     5: </HEAD>
2.6       timbl       6: <BODY>
2.8       frystyk     7: 
                      8: <H1>HTML generator</H1>
                      9: 
2.9       frystyk    10: <PRE>
                     11: /*
2.13      frystyk    12: **     (c) COPYRIGHT MIT 1995.
2.9       frystyk    13: **     Please first read the full copyright statement in the file COPYRIGH.
                     14: */
                     15: </PRE>
                     16: 
2.8       frystyk    17: This module converts structed stream into stream.  That is, given a
2.9       frystyk    18: stream to write to, it will give you a structured stream to. <P>
                     19: 
2.16      frystyk    20: This module is implemented by <A HREF="HTMLGen.c">HTMLGen.c</A>, and
2.18      frystyk    21: it is a part of the <A HREF="http://www.w3.org/pub/WWW/Library/"> W3C
                     22: Reference Library</A>.
2.8       frystyk    23: 
                     24: <PRE>
                     25: #ifndef HTMLGEN_H
2.1       timbl      26: #define HTMLGEN_H
                     27: 
2.15      frystyk    28: #include "HTStruct.h"
2.16      frystyk    29: #include "HTFormat.h"
2.18      frystyk    30: </PRE>
                     31: 
                     32: The HTML generator stream is almost a converter stream but it returns
                     33: a structured stream instead of a generic stream. The difference is
                     34: that a structured stream has methods for starting and ending mark up
                     35: elements and for HTML/SGML entities.
2.16      frystyk    36: 
2.18      frystyk    37: <PRE>
2.19      frystyk    38: extern HTStructured* HTMLGenerator (HTRequest *        request,
                     39:                                   void *       param,
                     40:                                   HTFormat     input_format,
                     41:                                   HTFormat     output_format,
                     42:                                   HTStream *   output_stream);
2.1       timbl      43: 
                     44: 
2.7       timbl      45: extern HTConverter HTPlainToHTML;
2.1       timbl      46: 
                     47: #endif
2.11      frystyk    48: </PRE>
2.15      frystyk    49: 
2.21    ! frystyk    50: <HR>
        !            51: <ADDRESS>
        !            52: @(#) $Id: Date Author State $
        !            53: </ADDRESS>
2.11      frystyk    54: </BODY>
2.6       timbl      55: </HTML>

Webmaster