File:  [Public] / libwww / Library / src / HTMLGen.html
Revision 2.23: download - view: text, annotated - select for diffs
Thu May 14 02:10:43 1998 UTC (26 years ago) by frystyk
Branches: MAIN
CVS tags: repeat-requests, before_webdav, Release-5-4-0, Release-5-3-1, Release-5-2-8, Release-5-2-6, Release-5-2, Release-5-1m, HEAD, Before-New-Trace-Messages, Amaya_2_4, Amaya-6-3, Amaya-6-1, Amaya-5-2, Amaya-4-3-2, Amaya-4-3-1, Amaya-4-3, Amaya-4-1-2, Amaya-4-1-0, Amaya-4-0-0, Amaya-3-2-1, Amaya-3-2, Amaya
Changing old pub/WWW links

<HTML>
<HEAD>
<TITLE>W3C Sample Code Library libwww HTML GENERATOR</TITLE>
<!-- Changed by: Henrik Frystyk Nielsen, 23-Mar-1996 -->
</HEAD>
<BODY>

<H1>HTML generator</H1>

<PRE>
/*
**	(c) COPYRIGHT MIT 1995.
**	Please first read the full copyright statement in the file COPYRIGH.
*/
</PRE>

This module converts structed stream into stream.  That is, given a
stream to write to, it will give you a structured stream to. <P>

This module is implemented by <A HREF="HTMLGen.c">HTMLGen.c</A>, and
it is a part of the <A HREF="http://www.w3.org/Library/"> W3C
Sample Code Library</A>.

<PRE>
#ifndef HTMLGEN_H
#define HTMLGEN_H

#include "HTStruct.h"
#include "HTFormat.h"
</PRE>

The HTML generator stream is almost a converter stream but it returns
a structured stream instead of a generic stream. The difference is
that a structured stream has methods for starting and ending mark up
elements and for HTML/SGML entities.

<PRE>
extern HTStructured* HTMLGenerator (HTRequest *	request,
				   void *	param,
				   HTFormat	input_format,
				   HTFormat	output_format,
				   HTStream *	output_stream);


extern HTConverter HTPlainToHTML;

#endif
</PRE>

<HR>
<ADDRESS>
@(#) $Id: HTMLGen.html,v 2.23 1998/05/14 02:10:43 frystyk Exp $
</ADDRESS>
</BODY>
</HTML>

Webmaster