diff options
Diffstat (limited to 'WWW/Library/Implementation/HTMIME.h')
-rw-r--r-- | WWW/Library/Implementation/HTMIME.h | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/WWW/Library/Implementation/HTMIME.h b/WWW/Library/Implementation/HTMIME.h new file mode 100644 index 00000000..94b9665c --- /dev/null +++ b/WWW/Library/Implementation/HTMIME.h @@ -0,0 +1,77 @@ +/* /Net/dxcern/userd/timbl/hypertext/WWW/Library/Implementation/HTMIME.html + MIME PARSER + + The MIME parser stream presents a MIME document. It recursively invokes the format + manager to handle embedded formats. + + As well as stripping off and parsing the headers, the MIME parser has to parse any + weirld MIME encodings it may meet within the body parts of messages, and must deal with + multipart messages. + + This module is implemented to the level necessary for operation with WWW, but is not + currently complete for any arbitrary MIME message. + + Check the source for latest additions to functionality. + + The MIME parser is complicated by the fact that WWW allows real binary to be sent, not + ASCII encoded. Therefore the netascii decoding is included in this module. One cannot + layer it by converting first from Net to local text, then decoding it. Of course, for + local files, the net ascii decoding is not needed. There are therefore two creation + routines. + + */ +#ifndef HTMIME_H +#define HTMIME_H + +#include "HTStream.h" +#include "HTAnchor.h" + +/* + + INPUT: LOCAL TEXT + + */ +extern HTStream * HTMIMEConvert PARAMS((HTPresentation * pres, + HTParentAnchor * anchor, + HTStream * sink)); +/* + + INPUT: NET ASCII + + */ +extern HTStream * HTNetMIME PARAMS((HTPresentation * pres, + HTParentAnchor * anchor, + HTStream * sink)); + + +/* + + For handling Japanese headers. + +*/ +extern void HTmmdec_base64 PARAMS(( + char * t, + char * s)); + +extern void HTmmdec_quote PARAMS(( + char * t, + char * s)); + +extern void HTmmdecode PARAMS(( + char * trg, + char * str)); + +extern int HTrjis PARAMS(( + char * t, + char * s)); + +PUBLIC int HTmaybekanji PARAMS(( + int c1, + int c2)); + + +#endif /* !HTMIME_H */ + +/* + + end of HTMIME */ |