version 1.13, 2008/12/06 21:10:31 |
version 1.166, 2014/09/27 09:03:24 |
|
|
/* $Id$ */ |
/* $Id$ */ |
/* |
/* |
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se> |
* Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> |
|
* Copyright (c) 2011, 2012, 2013, 2014 Ingo Schwarze <schwarze@openbsd.org> |
* |
* |
* Permission to use, copy, modify, and distribute this software for any |
* Permission to use, copy, modify, and distribute this software for any |
* purpose with or without fee is hereby granted, provided that the |
* purpose with or without fee is hereby granted, provided that the above |
* above copyright notice and this permission notice appear in all |
* copyright notice and this permission notice appear in all copies. |
* copies. |
|
* |
* |
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL |
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED |
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE |
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
* AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER |
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
* PERFORMANCE OF THIS SOFTWARE. |
|
*/ |
*/ |
#include <sys/param.h> |
#include "config.h" |
#include <sys/stat.h> |
|
|
|
|
#include <sys/types.h> |
|
|
#include <assert.h> |
#include <assert.h> |
#include <err.h> |
#include <ctype.h> |
#include <fcntl.h> |
#include <stdarg.h> |
#include <stdlib.h> |
|
#include <stdio.h> |
#include <stdio.h> |
|
#include <stdint.h> |
|
#include <stdlib.h> |
#include <string.h> |
#include <string.h> |
#include <unistd.h> |
#include <unistd.h> |
|
|
#include "libmdocml.h" |
#include "mandoc.h" |
#include "private.h" |
#include "mandoc_aux.h" |
#include "ml.h" |
#include "libmandoc.h" |
|
#include "out.h" |
|
#include "html.h" |
|
#include "main.h" |
|
|
|
struct htmldata { |
|
const char *name; |
|
int flags; |
|
#define HTML_CLRLINE (1 << 0) |
|
#define HTML_NOSTACK (1 << 1) |
|
#define HTML_AUTOCLOSE (1 << 2) /* Tag has auto-closure. */ |
|
}; |
|
|
/* TODO: allow head/tail-less invocations (just "div" start). */ |
static const struct htmldata htmltags[TAG_MAX] = { |
|
{"html", HTML_CLRLINE}, /* TAG_HTML */ |
|
{"head", HTML_CLRLINE}, /* TAG_HEAD */ |
|
{"body", HTML_CLRLINE}, /* TAG_BODY */ |
|
{"meta", HTML_CLRLINE | HTML_NOSTACK | HTML_AUTOCLOSE}, /* TAG_META */ |
|
{"title", HTML_CLRLINE}, /* TAG_TITLE */ |
|
{"div", HTML_CLRLINE}, /* TAG_DIV */ |
|
{"h1", 0}, /* TAG_H1 */ |
|
{"h2", 0}, /* TAG_H2 */ |
|
{"span", 0}, /* TAG_SPAN */ |
|
{"link", HTML_CLRLINE | HTML_NOSTACK | HTML_AUTOCLOSE}, /* TAG_LINK */ |
|
{"br", HTML_CLRLINE | HTML_NOSTACK | HTML_AUTOCLOSE}, /* TAG_BR */ |
|
{"a", 0}, /* TAG_A */ |
|
{"table", HTML_CLRLINE}, /* TAG_TABLE */ |
|
{"tbody", HTML_CLRLINE}, /* TAG_TBODY */ |
|
{"col", HTML_CLRLINE | HTML_NOSTACK | HTML_AUTOCLOSE}, /* TAG_COL */ |
|
{"tr", HTML_CLRLINE}, /* TAG_TR */ |
|
{"td", HTML_CLRLINE}, /* TAG_TD */ |
|
{"li", HTML_CLRLINE}, /* TAG_LI */ |
|
{"ul", HTML_CLRLINE}, /* TAG_UL */ |
|
{"ol", HTML_CLRLINE}, /* TAG_OL */ |
|
{"dl", HTML_CLRLINE}, /* TAG_DL */ |
|
{"dt", HTML_CLRLINE}, /* TAG_DT */ |
|
{"dd", HTML_CLRLINE}, /* TAG_DD */ |
|
{"blockquote", HTML_CLRLINE}, /* TAG_BLOCKQUOTE */ |
|
{"p", HTML_CLRLINE | HTML_NOSTACK | HTML_AUTOCLOSE}, /* TAG_P */ |
|
{"pre", HTML_CLRLINE }, /* TAG_PRE */ |
|
{"b", 0 }, /* TAG_B */ |
|
{"i", 0 }, /* TAG_I */ |
|
{"code", 0 }, /* TAG_CODE */ |
|
{"small", 0 }, /* TAG_SMALL */ |
|
{"style", HTML_CLRLINE}, /* TAG_STYLE */ |
|
}; |
|
|
struct htmlnode { |
static const char *const htmlattrs[ATTR_MAX] = { |
int tok; |
"name", /* ATTR_NAME */ |
enum md_ns ns; |
"rel", /* ATTR_REL */ |
int argc[ROFF_MAXLINEARG]; |
"href", /* ATTR_HREF */ |
char *argv[ROFF_MAXLINEARG]; |
"type", /* ATTR_TYPE */ |
struct htmlnode *parent; |
"media", /* ATTR_MEDIA */ |
|
"class", /* ATTR_CLASS */ |
|
"style", /* ATTR_STYLE */ |
|
"width", /* ATTR_WIDTH */ |
|
"id", /* ATTR_ID */ |
|
"summary", /* ATTR_SUMMARY */ |
|
"align", /* ATTR_ALIGN */ |
|
"colspan", /* ATTR_COLSPAN */ |
|
"charset", /* ATTR_CHARSET */ |
}; |
}; |
|
|
|
static const char *const roffscales[SCALE_MAX] = { |
struct htmlq { |
"cm", /* SCALE_CM */ |
struct htmlnode *last; |
"in", /* SCALE_IN */ |
|
"pc", /* SCALE_PC */ |
|
"pt", /* SCALE_PT */ |
|
"em", /* SCALE_EM */ |
|
"em", /* SCALE_MM */ |
|
"ex", /* SCALE_EN */ |
|
"ex", /* SCALE_BU */ |
|
"em", /* SCALE_VS */ |
|
"ex", /* SCALE_FS */ |
}; |
}; |
|
|
|
static void bufncat(struct html *, const char *, size_t); |
|
static void print_ctag(struct html *, enum htmltag); |
|
static int print_escape(char); |
|
static int print_encode(struct html *, const char *, int); |
|
static void print_metaf(struct html *, enum mandoc_esc); |
|
static void print_attr(struct html *, const char *, const char *); |
|
static void *ml_alloc(char *, enum htmltype); |
|
|
static int html_loadcss(struct md_mbuf *, const char *); |
|
|
|
static int html_alloc(void **); |
static void * |
static void html_free(void *); |
ml_alloc(char *outopts, enum htmltype type) |
static ssize_t html_endtag(struct md_mbuf *, void *, |
|
const struct md_args *, |
|
enum md_ns, int); |
|
static ssize_t html_begintag(struct md_mbuf *, void *, |
|
const struct md_args *, |
|
enum md_ns, int, |
|
const int *, const char **); |
|
static int html_begin(struct md_mbuf *, |
|
const struct md_args *, |
|
const struct tm *, |
|
const char *, const char *, |
|
const char *, const char *); |
|
static int html_printargs(struct md_mbuf *, int, |
|
const char *, const int *, |
|
const char **, size_t *); |
|
static int html_end(struct md_mbuf *, |
|
const struct md_args *); |
|
static int html_blocktagname(struct md_mbuf *, |
|
const struct md_args *, int, |
|
struct htmlq *, const int *, |
|
const char **, size_t *); |
|
static int html_blocktagargs(struct md_mbuf *, |
|
const struct md_args *, int, |
|
const int *, const char **, size_t *); |
|
static int html_headtagname(struct md_mbuf *, |
|
const struct md_args *, int, |
|
struct htmlq *, const int *, |
|
const char **, size_t *); |
|
static int html_headtagargs(struct md_mbuf *, |
|
const struct md_args *, int, |
|
const int *, const char **, size_t *); |
|
static int html_bodytagname(struct md_mbuf *, |
|
const struct md_args *, |
|
int, struct htmlq *, const int *, |
|
const char **, size_t *); |
|
static int html_bodytagargs(struct md_mbuf *, |
|
const struct md_args *, int, |
|
const int *, const char **, size_t *); |
|
static int html_inlinetagname(struct md_mbuf *, |
|
const struct md_args *, int, size_t *); |
|
static int html_inlinetagargs(struct md_mbuf *, |
|
const struct md_args *, int, |
|
const int *, const char **, size_t *); |
|
static int html_Bl_bodytagname(struct md_mbuf *, |
|
struct htmlq *, const int *, |
|
const char **, size_t *); |
|
static int html_It_blocktagname(struct md_mbuf *, |
|
struct htmlq *, const int *, |
|
const char **, size_t *); |
|
static int html_It_headtagname(struct md_mbuf *, |
|
struct htmlq *, const int *, |
|
const char **, size_t *); |
|
static int html_It_bodytagname(struct md_mbuf *, |
|
struct htmlq *, const int *, |
|
const char **, size_t *); |
|
|
|
|
|
/* ARGSUSED */ |
|
static int |
|
html_It_headtagname(struct md_mbuf *mbuf, struct htmlq *q, |
|
const int *argc, const char **argv, size_t *res) |
|
{ |
{ |
struct htmlnode *n; |
struct html *h; |
int i; |
const char *toks[5]; |
|
char *v; |
|
|
for (n = q->last; n; n = n->parent) |
toks[0] = "style"; |
if (n->tok == ROFF_Bl) |
toks[1] = "man"; |
break; |
toks[2] = "includes"; |
|
toks[3] = "fragment"; |
|
toks[4] = NULL; |
|
|
assert(n); |
h = mandoc_calloc(1, sizeof(struct html)); |
|
|
/* LINTED */ |
h->type = type; |
for (i = 0; ROFF_ARGMAX != n->argc[i] && |
h->tags.head = NULL; |
i < ROFF_MAXLINEARG; i++) { |
h->symtab = mchars_alloc(); |
switch (n->argc[i]) { |
|
case (ROFF_Tag): |
while (outopts && *outopts) |
/* FALLTHROUGH */ |
switch (getsubopt(&outopts, UNCONST(toks), &v)) { |
case (ROFF_Column): |
case 0: |
return(ml_nputs(mbuf, "td", 2, res)); |
h->style = v; |
|
break; |
|
case 1: |
|
h->base_man = v; |
|
break; |
|
case 2: |
|
h->base_includes = v; |
|
break; |
|
case 3: |
|
h->oflags |= HTML_FRAGMENT; |
|
break; |
default: |
default: |
break; |
break; |
} |
} |
} |
|
|
|
assert(i != ROFF_MAXLINEARG); |
return(h); |
abort(); |
|
/* NOTREACHED */ |
|
|
|
return(1); |
|
} |
} |
|
|
|
void * |
|
html_alloc(char *outopts) |
|
{ |
|
|
/* ARGSUSED */ |
return(ml_alloc(outopts, HTML_HTML_4_01_STRICT)); |
static int |
} |
html_It_bodytagname(struct md_mbuf *mbuf, struct htmlq *q, |
|
const int *argc, const char **argv, size_t *res) |
void * |
|
xhtml_alloc(char *outopts) |
{ |
{ |
struct htmlnode *n; |
|
int i; |
|
|
|
for (n = q->last; n; n = n->parent) |
return(ml_alloc(outopts, HTML_XHTML_1_0_STRICT)); |
if (n->tok == ROFF_Bl) |
} |
break; |
|
|
|
assert(n); |
void |
|
html_free(void *p) |
|
{ |
|
struct tag *tag; |
|
struct html *h; |
|
|
/* LINTED */ |
h = (struct html *)p; |
for (i = 0; ROFF_ARGMAX != n->argc[i] && |
|
i < ROFF_MAXLINEARG; i++) { |
while ((tag = h->tags.head) != NULL) { |
switch (n->argc[i]) { |
h->tags.head = tag->next; |
case (ROFF_Enum): |
free(tag); |
/* FALLTHROUGH */ |
|
case (ROFF_Bullet): |
|
/* FALLTHROUGH */ |
|
case (ROFF_Dash): |
|
/* FALLTHROUGH */ |
|
case (ROFF_Hyphen): |
|
/* FALLTHROUGH */ |
|
case (ROFF_Item): |
|
/* FALLTHROUGH */ |
|
case (ROFF_Diag): |
|
/* FALLTHROUGH */ |
|
case (ROFF_Hang): |
|
/* FALLTHROUGH */ |
|
case (ROFF_Ohang): |
|
/* FALLTHROUGH */ |
|
case (ROFF_Inset): |
|
return(ml_nputs(mbuf, "div", 3, res)); |
|
case (ROFF_Tag): |
|
/* FALLTHROUGH */ |
|
case (ROFF_Column): |
|
return(ml_nputs(mbuf, "td", 2, res)); |
|
default: |
|
break; |
|
} |
|
} |
} |
|
|
assert(i != ROFF_MAXLINEARG); |
if (h->symtab) |
abort(); |
mchars_free(h->symtab); |
/* NOTREACHED */ |
|
|
|
return(1); |
free(h); |
} |
} |
|
|
|
void |
|
print_gen_head(struct html *h) |
|
{ |
|
struct htmlpair tag[4]; |
|
struct tag *t; |
|
|
/* ARGSUSED */ |
tag[0].key = ATTR_CHARSET; |
static int |
tag[0].val = "utf-8"; |
html_Bl_bodytagname(struct md_mbuf *mbuf, struct htmlq *q, |
print_otag(h, TAG_META, 1, tag); |
const int *argc, const char **argv, size_t *res) |
|
|
t = print_otag(h, TAG_STYLE, 0, NULL); |
|
print_text(h, "table.head, table.foot { width: 100%; }\n"); |
|
print_tagq(h, t); |
|
|
|
if (h->style) { |
|
tag[0].key = ATTR_REL; |
|
tag[0].val = "stylesheet"; |
|
tag[1].key = ATTR_HREF; |
|
tag[1].val = h->style; |
|
tag[2].key = ATTR_TYPE; |
|
tag[2].val = "text/css"; |
|
tag[3].key = ATTR_MEDIA; |
|
tag[3].val = "all"; |
|
print_otag(h, TAG_LINK, 4, tag); |
|
} |
|
} |
|
|
|
static void |
|
print_metaf(struct html *h, enum mandoc_esc deco) |
{ |
{ |
int i; |
enum htmlfont font; |
|
|
for (i = 0; ROFF_ARGMAX != argc[i] |
switch (deco) { |
&& i < ROFF_MAXLINEARG; i++) { |
case ESCAPE_FONTPREV: |
switch (argc[i]) { |
font = h->metal; |
case (ROFF_Enum): |
break; |
return(ml_nputs(mbuf, "ol", 2, res)); |
case ESCAPE_FONTITALIC: |
case (ROFF_Bullet): |
font = HTMLFONT_ITALIC; |
/* FALLTHROUGH */ |
break; |
case (ROFF_Dash): |
case ESCAPE_FONTBOLD: |
/* FALLTHROUGH */ |
font = HTMLFONT_BOLD; |
case (ROFF_Hyphen): |
break; |
/* FALLTHROUGH */ |
case ESCAPE_FONTBI: |
case (ROFF_Item): |
font = HTMLFONT_BI; |
/* FALLTHROUGH */ |
break; |
case (ROFF_Diag): |
case ESCAPE_FONT: |
/* FALLTHROUGH */ |
/* FALLTHROUGH */ |
case (ROFF_Hang): |
case ESCAPE_FONTROMAN: |
/* FALLTHROUGH */ |
font = HTMLFONT_NONE; |
case (ROFF_Ohang): |
break; |
/* FALLTHROUGH */ |
default: |
case (ROFF_Inset): |
abort(); |
return(ml_nputs(mbuf, "ul", 2, res)); |
/* NOTREACHED */ |
case (ROFF_Tag): |
|
/* FALLTHROUGH */ |
|
case (ROFF_Column): |
|
return(ml_nputs(mbuf, "table", 5, res)); |
|
default: |
|
break; |
|
} |
|
} |
} |
|
|
assert(i != ROFF_MAXLINEARG); |
if (h->metaf) { |
abort(); |
print_tagq(h, h->metaf); |
/* NOTREACHED */ |
h->metaf = NULL; |
} |
} |
|
|
|
h->metal = h->metac; |
|
h->metac = font; |
|
|
/* ARGSUSED */ |
switch (font) { |
static int |
case HTMLFONT_ITALIC: |
html_It_blocktagname(struct md_mbuf *mbuf, struct htmlq *q, |
h->metaf = print_otag(h, TAG_I, 0, NULL); |
const int *argc, const char **argv, size_t *res) |
break; |
|
case HTMLFONT_BOLD: |
|
h->metaf = print_otag(h, TAG_B, 0, NULL); |
|
break; |
|
case HTMLFONT_BI: |
|
h->metaf = print_otag(h, TAG_B, 0, NULL); |
|
print_otag(h, TAG_I, 0, NULL); |
|
break; |
|
default: |
|
break; |
|
} |
|
} |
|
|
|
int |
|
html_strlen(const char *cp) |
{ |
{ |
struct htmlnode *n; |
size_t rsz; |
int i; |
int skip, sz; |
|
|
for (n = q->last; n; n = n->parent) |
/* |
if (n->tok == ROFF_Bl) |
* Account for escaped sequences within string length |
break; |
* calculations. This follows the logic in term_strlen() as we |
|
* must calculate the width of produced strings. |
|
* Assume that characters are always width of "1". This is |
|
* hacky, but it gets the job done for approximation of widths. |
|
*/ |
|
|
assert(n); |
sz = 0; |
|
skip = 0; |
/* LINTED */ |
while (1) { |
for (i = 0; ROFF_ARGMAX != n->argc[i] && |
rsz = strcspn(cp, "\\"); |
i < ROFF_MAXLINEARG; i++) { |
if (rsz) { |
switch (n->argc[i]) { |
cp += rsz; |
case (ROFF_Enum): |
if (skip) { |
|
skip = 0; |
|
rsz--; |
|
} |
|
sz += rsz; |
|
} |
|
if ('\0' == *cp) |
|
break; |
|
cp++; |
|
switch (mandoc_escape(&cp, NULL, NULL)) { |
|
case ESCAPE_ERROR: |
|
return(sz); |
|
case ESCAPE_UNICODE: |
/* FALLTHROUGH */ |
/* FALLTHROUGH */ |
case (ROFF_Bullet): |
case ESCAPE_NUMBERED: |
/* FALLTHROUGH */ |
/* FALLTHROUGH */ |
case (ROFF_Dash): |
case ESCAPE_SPECIAL: |
/* FALLTHROUGH */ |
if (skip) |
case (ROFF_Hyphen): |
skip = 0; |
/* FALLTHROUGH */ |
else |
case (ROFF_Item): |
sz++; |
/* FALLTHROUGH */ |
break; |
case (ROFF_Diag): |
case ESCAPE_SKIPCHAR: |
/* FALLTHROUGH */ |
skip = 1; |
case (ROFF_Hang): |
break; |
/* FALLTHROUGH */ |
|
case (ROFF_Ohang): |
|
/* FALLTHROUGH */ |
|
case (ROFF_Inset): |
|
return(ml_nputs(mbuf, "li", 2, res)); |
|
case (ROFF_Tag): |
|
/* FALLTHROUGH */ |
|
case (ROFF_Column): |
|
return(ml_nputs(mbuf, "tr", 2, res)); |
|
default: |
default: |
break; |
break; |
} |
} |
} |
} |
|
return(sz); |
assert(i != ROFF_MAXLINEARG); |
|
abort(); |
|
/* NOTREACHED */ |
|
} |
} |
|
|
|
|
static int |
static int |
html_loadcss(struct md_mbuf *mbuf, const char *css) |
print_escape(char c) |
{ |
{ |
size_t res, bufsz; |
|
char *buf; |
|
struct stat st; |
|
int fd, c; |
|
ssize_t ssz; |
|
|
|
c = 0; |
switch (c) { |
res = 0; |
case '<': |
buf = NULL; |
printf("<"); |
|
break; |
if (-1 == (fd = open(css, O_RDONLY, 0))) { |
case '>': |
warn("%s", css); |
printf(">"); |
|
break; |
|
case '&': |
|
printf("&"); |
|
break; |
|
case '"': |
|
printf("""); |
|
break; |
|
case ASCII_NBRSP: |
|
putchar('-'); |
|
break; |
|
case ASCII_HYPH: |
|
putchar('-'); |
|
/* FALLTHROUGH */ |
|
case ASCII_BREAK: |
|
break; |
|
default: |
return(0); |
return(0); |
} |
|
|
|
if (-1 == fstat(fd, &st)) { |
|
warn("%s", css); |
|
goto out; |
|
} |
} |
|
return(1); |
bufsz = MAX(st.st_blksize, BUFSIZ); |
|
if (NULL == (buf = malloc(bufsz))) { |
|
warn("malloc"); |
|
goto out; |
|
} |
|
|
|
for (;;) { |
|
if (-1 == (ssz = read(fd, buf, bufsz))) { |
|
warn("%s", css); |
|
goto out; |
|
} else if (0 == ssz) |
|
break; |
|
if ( ! ml_nputs(mbuf, buf, (size_t)ssz, &res)) |
|
goto out; |
|
} |
|
|
|
c = 1; |
|
|
|
out: |
|
if (-1 == close(fd)) { |
|
warn("%s", css); |
|
c = 0; |
|
} |
|
|
|
if (buf) |
|
free(buf); |
|
|
|
return(c); |
|
} |
} |
|
|
|
static int |
/* ARGSUSED */ |
print_encode(struct html *h, const char *p, int norecurse) |
static int |
|
html_begin(struct md_mbuf *mbuf, const struct md_args *args, |
|
const struct tm *tm, const char *os, |
|
const char *title, const char *section, |
|
const char *vol) |
|
{ |
{ |
const char *preamble, *css, *trail; |
size_t sz; |
char buf[512]; |
int c, len, nospace; |
size_t res; |
const char *seq; |
|
enum mandoc_esc esc; |
|
static const char rejs[9] = { '\\', '<', '>', '&', '"', |
|
ASCII_NBRSP, ASCII_HYPH, ASCII_BREAK, '\0' }; |
|
|
preamble = |
nospace = 0; |
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\"\n" |
|
" \"http://www.w3.org/TR/html4/strict.dtd\">\n" |
|
"<html>\n" |
|
"<head>\n" |
|
" <meta http-equiv=\"Content-Type\"\n" |
|
" content=\"text/html;charset=utf-8\">\n" |
|
" <meta name=\"resource-type\" content=\"document\">\n" |
|
" <title>Manual Page for %s(%s)</title>\n"; |
|
|
|
css = |
while ('\0' != *p) { |
" <link rel=\"stylesheet\" type=\"text/css\"\n" |
if (HTML_SKIPCHAR & h->flags && '\\' != *p) { |
" href=\"%s\">\n"; |
h->flags &= ~HTML_SKIPCHAR; |
trail = |
p++; |
"</head>\n" |
continue; |
"<body>\n" |
} |
"<div class=\"mdoc\">"; |
|
|
|
res = 0; |
sz = strcspn(p, rejs); |
|
|
(void)snprintf(buf, sizeof(buf) - 1, |
fwrite(p, 1, sz, stdout); |
preamble, title, section); |
p += (int)sz; |
|
|
if ( ! ml_puts(mbuf, buf, &res)) |
if ('\0' == *p) |
return(0); |
break; |
|
|
assert(args->params.html.css); |
if (print_escape(*p++)) |
if (HTML_CSS_EMBED & args->params.html.flags) { |
continue; |
if ( ! ml_puts(mbuf, " <style type=\"text/css\"><!--\n", &res)) |
|
return(0); |
|
if ( ! html_loadcss(mbuf, args->params.html.css)) |
|
return(0); |
|
if ( ! ml_puts(mbuf, " --!></style>\n", &res)) |
|
return(0); |
|
} else { |
|
(void)snprintf(buf, sizeof(buf) - 1, css, |
|
args->params.html.css); |
|
if ( ! ml_puts(mbuf, buf, &res)) |
|
return(0); |
|
} |
|
|
|
if ( ! ml_puts(mbuf, trail, &res)) |
esc = mandoc_escape(&p, &seq, &len); |
return(0); |
if (ESCAPE_ERROR == esc) |
|
break; |
|
|
return(1); |
switch (esc) { |
} |
case ESCAPE_FONT: |
|
/* FALLTHROUGH */ |
|
case ESCAPE_FONTPREV: |
|
/* FALLTHROUGH */ |
|
case ESCAPE_FONTBOLD: |
|
/* FALLTHROUGH */ |
|
case ESCAPE_FONTITALIC: |
|
/* FALLTHROUGH */ |
|
case ESCAPE_FONTBI: |
|
/* FALLTHROUGH */ |
|
case ESCAPE_FONTROMAN: |
|
if (0 == norecurse) |
|
print_metaf(h, esc); |
|
continue; |
|
case ESCAPE_SKIPCHAR: |
|
h->flags |= HTML_SKIPCHAR; |
|
continue; |
|
default: |
|
break; |
|
} |
|
|
|
if (h->flags & HTML_SKIPCHAR) { |
|
h->flags &= ~HTML_SKIPCHAR; |
|
continue; |
|
} |
|
|
/* ARGSUSED */ |
switch (esc) { |
static int |
case ESCAPE_UNICODE: |
html_end(struct md_mbuf *mbuf, const struct md_args *args) |
/* Skip past "u" header. */ |
{ |
c = mchars_num2uc(seq + 1, len - 1); |
|
if ('\0' != c) |
|
printf("&#x%x;", c); |
|
break; |
|
case ESCAPE_NUMBERED: |
|
c = mchars_num2char(seq, len); |
|
if ( ! ('\0' == c || print_escape(c))) |
|
putchar(c); |
|
break; |
|
case ESCAPE_SPECIAL: |
|
c = mchars_spec2cp(h->symtab, seq, len); |
|
if (c > 0) |
|
printf("&#%d;", c); |
|
else if (-1 == c && 1 == len && |
|
!print_escape(*seq)) |
|
putchar((int)*seq); |
|
break; |
|
case ESCAPE_NOSPACE: |
|
if ('\0' == *p) |
|
nospace = 1; |
|
break; |
|
default: |
|
break; |
|
} |
|
} |
|
|
return(ml_puts(mbuf, "</div></body>\n</html>", NULL)); |
return(nospace); |
} |
} |
|
|
|
static void |
/* ARGSUSED */ |
print_attr(struct html *h, const char *key, const char *val) |
static int |
|
html_bodytagname(struct md_mbuf *mbuf, |
|
const struct md_args *args, int tok, struct htmlq *q, |
|
const int *argc, const char **argv, size_t *res) |
|
{ |
{ |
|
printf(" %s=\"", key); |
switch (tok) { |
(void)print_encode(h, val, 1); |
case (ROFF_Bl): |
putchar('\"'); |
return(html_Bl_bodytagname(mbuf, q, argc, argv, res)); |
|
case (ROFF_Fo): |
|
return(ml_nputs(mbuf, "span", 4, res)); |
|
case (ROFF_It): |
|
return(html_It_bodytagname(mbuf, q, argc, argv, res)); |
|
case (ROFF_Oo): |
|
return(ml_nputs(mbuf, "span", 4, res)); |
|
default: |
|
break; |
|
} |
|
|
|
return(ml_puts(mbuf, "div", res)); |
|
} |
} |
|
|
|
struct tag * |
/* ARGSUSED */ |
print_otag(struct html *h, enum htmltag tag, |
static int |
int sz, const struct htmlpair *p) |
html_headtagname(struct md_mbuf *mbuf, |
|
const struct md_args *args, int tok, struct htmlq *q, |
|
const int *argc, const char **argv, size_t *res) |
|
{ |
{ |
|
int i; |
|
struct tag *t; |
|
|
switch (tok) { |
/* Push this tags onto the stack of open scopes. */ |
case (ROFF_It): |
|
return(html_It_headtagname(mbuf, q, argc, argv, res)); |
|
case (ROFF_Fo): |
|
return(ml_nputs(mbuf, "span", 4, res)); |
|
case (ROFF_Oo): |
|
return(ml_nputs(mbuf, "span", 4, res)); |
|
case (ROFF_Sh): |
|
return(ml_nputs(mbuf, "h1", 2, res)); |
|
case (ROFF_Ss): |
|
return(ml_nputs(mbuf, "h2", 2, res)); |
|
default: |
|
break; |
|
} |
|
|
|
return(ml_nputs(mbuf, "div", 3, res)); |
if ( ! (HTML_NOSTACK & htmltags[tag].flags)) { |
} |
t = mandoc_malloc(sizeof(struct tag)); |
|
t->tag = tag; |
|
t->next = h->tags.head; |
|
h->tags.head = t; |
|
} else |
|
t = NULL; |
|
|
|
if ( ! (HTML_NOSPACE & h->flags)) |
|
if ( ! (HTML_CLRLINE & htmltags[tag].flags)) { |
|
/* Manage keeps! */ |
|
if ( ! (HTML_KEEP & h->flags)) { |
|
if (HTML_PREKEEP & h->flags) |
|
h->flags |= HTML_KEEP; |
|
putchar(' '); |
|
} else |
|
printf(" "); |
|
} |
|
|
/* ARGSUSED */ |
if ( ! (h->flags & HTML_NONOSPACE)) |
static int |
h->flags &= ~HTML_NOSPACE; |
html_blocktagname(struct md_mbuf *mbuf, const struct md_args *args, |
else |
int tok, struct htmlq *q, const int *argc, |
h->flags |= HTML_NOSPACE; |
const char **argv, size_t *res) |
|
{ |
|
|
|
switch (tok) { |
/* Print out the tag name and attributes. */ |
case (ROFF_Fo): |
|
return(ml_nputs(mbuf, "span", 4, res)); |
|
case (ROFF_Oo): |
|
return(ml_nputs(mbuf, "span", 4, res)); |
|
case (ROFF_It): |
|
return(html_It_blocktagname(mbuf, q, argc, argv, res)); |
|
default: |
|
break; |
|
} |
|
|
|
return(ml_puts(mbuf, "div", res)); |
printf("<%s", htmltags[tag].name); |
} |
for (i = 0; i < sz; i++) |
|
print_attr(h, htmlattrs[p[i].key], p[i].val); |
|
|
|
/* Accommodate for XML "well-formed" singleton escaping. */ |
|
|
/* ARGSUSED */ |
if (HTML_AUTOCLOSE & htmltags[tag].flags) |
static int |
switch (h->type) { |
html_printargs(struct md_mbuf *mbuf, int tok, const char *ns, |
case HTML_XHTML_1_0_STRICT: |
const int *argc, const char **argv, size_t *res) |
putchar('/'); |
{ |
break; |
|
default: |
|
break; |
|
} |
|
|
if ( ! ml_puts(mbuf, " class=\"", res)) |
putchar('>'); |
return(0); |
|
if ( ! ml_puts(mbuf, ns, res)) |
|
return(0); |
|
if ( ! ml_puts(mbuf, "-", res)) |
|
return(0); |
|
if ( ! ml_puts(mbuf, toknames[tok], res)) |
|
return(0); |
|
return(ml_puts(mbuf, "\"", res)); |
|
} |
|
|
|
|
h->flags |= HTML_NOSPACE; |
|
|
/* ARGSUSED */ |
if ((HTML_AUTOCLOSE | HTML_CLRLINE) & htmltags[tag].flags) |
static int |
putchar('\n'); |
html_headtagargs(struct md_mbuf *mbuf, |
|
const struct md_args *args, int tok, |
|
const int *argc, const char **argv, size_t *res) |
|
{ |
|
|
|
return(html_printargs(mbuf, tok, "head", argc, argv, res)); |
return(t); |
} |
} |
|
|
|
static void |
/* ARGSUSED */ |
print_ctag(struct html *h, enum htmltag tag) |
static int |
|
html_bodytagargs(struct md_mbuf *mbuf, |
|
const struct md_args *args, int tok, |
|
const int *argc, const char **argv, size_t *res) |
|
{ |
{ |
|
|
return(html_printargs(mbuf, tok, "body", argc, argv, res)); |
printf("</%s>", htmltags[tag].name); |
|
if (HTML_CLRLINE & htmltags[tag].flags) { |
|
h->flags |= HTML_NOSPACE; |
|
putchar('\n'); |
|
} |
} |
} |
|
|
|
void |
/* ARGSUSED */ |
print_gen_decls(struct html *h) |
static int |
|
html_blocktagargs(struct md_mbuf *mbuf, |
|
const struct md_args *args, int tok, |
|
const int *argc, const char **argv, size_t *res) |
|
{ |
{ |
|
|
return(html_printargs(mbuf, tok, "block", argc, argv, res)); |
puts("<!DOCTYPE html>"); |
} |
} |
|
|
|
void |
/* ARGSUSED */ |
print_text(struct html *h, const char *word) |
static int |
|
html_inlinetagargs(struct md_mbuf *mbuf, |
|
const struct md_args *args, int tok, |
|
const int *argc, const char **argv, size_t *res) |
|
{ |
{ |
|
|
if ( ! html_printargs(mbuf, tok, "inline", argc, argv, res)) |
if ( ! (HTML_NOSPACE & h->flags)) { |
return(0); |
/* Manage keeps! */ |
|
if ( ! (HTML_KEEP & h->flags)) { |
|
if (HTML_PREKEEP & h->flags) |
|
h->flags |= HTML_KEEP; |
|
putchar(' '); |
|
} else |
|
printf(" "); |
|
} |
|
|
switch (tok) { |
assert(NULL == h->metaf); |
case (ROFF_Sx): |
switch (h->metac) { |
assert(*argv); |
case HTMLFONT_ITALIC: |
if ( ! ml_nputs(mbuf, " href=\"#", 8, res)) |
h->metaf = print_otag(h, TAG_I, 0, NULL); |
return(0); |
|
if ( ! ml_putstring(mbuf, *argv, res)) |
|
return(0); |
|
if ( ! ml_nputs(mbuf, "\"", 1, res)) |
|
return(0); |
|
break; |
break; |
|
case HTMLFONT_BOLD: |
|
h->metaf = print_otag(h, TAG_B, 0, NULL); |
|
break; |
|
case HTMLFONT_BI: |
|
h->metaf = print_otag(h, TAG_B, 0, NULL); |
|
print_otag(h, TAG_I, 0, NULL); |
|
break; |
default: |
default: |
break; |
break; |
} |
} |
|
|
return(1); |
|
} |
|
|
|
|
assert(word); |
|
if ( ! print_encode(h, word, 0)) { |
|
if ( ! (h->flags & HTML_NONOSPACE)) |
|
h->flags &= ~HTML_NOSPACE; |
|
} else |
|
h->flags |= HTML_NOSPACE; |
|
|
/* ARGSUSED */ |
if (h->metaf) { |
static int |
print_tagq(h, h->metaf); |
html_inlinetagname(struct md_mbuf *mbuf, |
h->metaf = NULL; |
const struct md_args *args, int tok, size_t *res) |
|
{ |
|
|
|
switch (tok) { |
|
case (ROFF_Pp): |
|
return(ml_nputs(mbuf, "div", 3, res)); |
|
case (ROFF_Sx): |
|
return(ml_nputs(mbuf, "a", 1, res)); |
|
default: |
|
break; |
|
} |
} |
|
|
return(ml_puts(mbuf, "span", res)); |
h->flags &= ~HTML_IGNDELIM; |
} |
} |
|
|
|
void |
static ssize_t |
print_tagq(struct html *h, const struct tag *until) |
html_begintag(struct md_mbuf *mbuf, void *data, |
|
const struct md_args *args, enum md_ns ns, |
|
int tok, const int *argc, const char **argv) |
|
{ |
{ |
size_t res; |
struct tag *tag; |
struct htmlq *q; |
|
struct htmlnode *node; |
|
int i; |
|
|
|
assert(ns != MD_NS_DEFAULT); |
while ((tag = h->tags.head) != NULL) { |
res = 0; |
/* |
|
* Remember to close out and nullify the current |
assert(data); |
* meta-font and table, if applicable. |
q = (struct htmlq *)data; |
*/ |
|
if (tag == h->metaf) |
if (NULL == (node = calloc(1, sizeof(struct htmlnode)))) { |
h->metaf = NULL; |
warn("calloc"); |
if (tag == h->tblt) |
return(-1); |
h->tblt = NULL; |
|
print_ctag(h, tag->tag); |
|
h->tags.head = tag->next; |
|
free(tag); |
|
if (until && tag == until) |
|
return; |
} |
} |
|
} |
|
|
node->parent = q->last; |
void |
node->tok = tok; |
print_stagq(struct html *h, const struct tag *suntil) |
node->ns = ns; |
{ |
|
struct tag *tag; |
|
|
if (argc) { |
while ((tag = h->tags.head) != NULL) { |
/* TODO: argv. */ |
if (suntil && tag == suntil) |
|
return; |
assert(argv); |
/* |
/* LINTED */ |
* Remember to close out and nullify the current |
for (i = 0; ROFF_ARGMAX != argc[i] |
* meta-font and table, if applicable. |
&& i < ROFF_MAXLINEARG; i++) |
*/ |
node->argc[i] = argc[i]; |
if (tag == h->metaf) |
assert(i != ROFF_MAXLINEARG); |
h->metaf = NULL; |
} |
if (tag == h->tblt) |
|
h->tblt = NULL; |
|
print_ctag(h, tag->tag); |
q->last = node; |
h->tags.head = tag->next; |
|
free(tag); |
switch (ns) { |
|
case (MD_NS_BLOCK): |
|
if ( ! html_blocktagname(mbuf, args, tok, |
|
q, argc, argv, &res)) |
|
return(-1); |
|
if ( ! html_blocktagargs(mbuf, args, tok, |
|
argc, argv, &res)) |
|
return(-1); |
|
break; |
|
case (MD_NS_BODY): |
|
if ( ! html_bodytagname(mbuf, args, tok, |
|
q, argc, argv, &res)) |
|
return(-1); |
|
if ( ! html_bodytagargs(mbuf, args, tok, |
|
argc, argv, &res)) |
|
return(-1); |
|
break; |
|
case (MD_NS_HEAD): |
|
if ( ! html_headtagname(mbuf, args, tok, q, |
|
argc, argv, &res)) |
|
return(-1); |
|
if ( ! html_headtagargs(mbuf, args, tok, |
|
argc, argv, &res)) |
|
return(-1); |
|
break; |
|
default: |
|
if ( ! html_inlinetagname(mbuf, args, tok, &res)) |
|
return(-1); |
|
if ( ! html_inlinetagargs(mbuf, args, tok, |
|
argc, argv, &res)) |
|
return(-1); |
|
break; |
|
} |
} |
|
|
return((ssize_t)res); |
|
} |
} |
|
|
|
void |
static ssize_t |
bufinit(struct html *h) |
html_endtag(struct md_mbuf *mbuf, void *data, |
|
const struct md_args *args, enum md_ns ns, int tok) |
|
{ |
{ |
size_t res; |
|
struct htmlq *q; |
|
struct htmlnode *node; |
|
|
|
assert(ns != MD_NS_DEFAULT); |
h->buf[0] = '\0'; |
res = 0; |
h->buflen = 0; |
|
} |
|
|
assert(data); |
void |
q = (struct htmlq *)data; |
bufcat_style(struct html *h, const char *key, const char *val) |
node = q->last; |
{ |
|
|
switch (ns) { |
bufcat(h, key); |
case (MD_NS_BLOCK): |
bufcat(h, ":"); |
if ( ! html_blocktagname(mbuf, args, tok, |
bufcat(h, val); |
q, node->argc, |
bufcat(h, ";"); |
(const char **)node->argv, &res)) |
} |
return(-1); |
|
break; |
|
case (MD_NS_BODY): |
|
if ( ! html_bodytagname(mbuf, args, tok, |
|
q, node->argc, |
|
(const char **)node->argv, &res)) |
|
return(-1); |
|
break; |
|
case (MD_NS_HEAD): |
|
if ( ! html_headtagname(mbuf, args, tok, |
|
q, node->argc, |
|
(const char **)node->argv, &res)) |
|
return(-1); |
|
break; |
|
default: |
|
if ( ! html_inlinetagname(mbuf, args, tok, &res)) |
|
return(-1); |
|
break; |
|
} |
|
|
|
q->last = node->parent; |
void |
|
bufcat(struct html *h, const char *p) |
|
{ |
|
|
free(node); |
/* |
|
* XXX This is broken and not easy to fix. |
|
* When using the -Oincludes option, buffmt_includes() |
|
* may pass in strings overrunning BUFSIZ, causing a crash. |
|
*/ |
|
|
return((ssize_t)res); |
h->buflen = strlcat(h->buf, p, BUFSIZ); |
|
assert(h->buflen < BUFSIZ); |
} |
} |
|
|
|
void |
static int |
bufcat_fmt(struct html *h, const char *fmt, ...) |
html_alloc(void **p) |
|
{ |
{ |
|
va_list ap; |
|
|
if (NULL == (*p = calloc(1, sizeof(struct htmlq)))) { |
va_start(ap, fmt); |
warn("calloc"); |
(void)vsnprintf(h->buf + (int)h->buflen, |
return(0); |
BUFSIZ - h->buflen - 1, fmt, ap); |
} |
va_end(ap); |
return(1); |
h->buflen = strlen(h->buf); |
} |
} |
|
|
|
|
static void |
static void |
html_free(void *p) |
bufncat(struct html *h, const char *p, size_t sz) |
{ |
{ |
struct htmlq *q; |
|
struct htmlnode *n; |
|
|
|
assert(p); |
assert(h->buflen + sz + 1 < BUFSIZ); |
q = (struct htmlq *)p; |
strncat(h->buf, p, sz); |
|
h->buflen += sz; |
|
} |
|
|
/* LINTED */ |
void |
while ((n = q->last)) { |
buffmt_includes(struct html *h, const char *name) |
q->last = n->parent; |
{ |
free(n); |
const char *p, *pp; |
} |
|
|
|
free(q); |
pp = h->base_includes; |
|
|
|
bufinit(h); |
|
while (NULL != (p = strchr(pp, '%'))) { |
|
bufncat(h, pp, (size_t)(p - pp)); |
|
switch (*(p + 1)) { |
|
case'I': |
|
bufcat(h, name); |
|
break; |
|
default: |
|
bufncat(h, p, 2); |
|
break; |
|
} |
|
pp = p + 2; |
|
} |
|
if (pp) |
|
bufcat(h, pp); |
} |
} |
|
|
|
void |
int |
buffmt_man(struct html *h, const char *name, const char *sec) |
md_line_html(void *data, char *buf) |
|
{ |
{ |
|
const char *p, *pp; |
|
|
return(mlg_line((struct md_mlg *)data, buf)); |
pp = h->base_man; |
|
|
|
bufinit(h); |
|
while (NULL != (p = strchr(pp, '%'))) { |
|
bufncat(h, pp, (size_t)(p - pp)); |
|
switch (*(p + 1)) { |
|
case 'S': |
|
bufcat(h, sec ? sec : "1"); |
|
break; |
|
case 'N': |
|
bufcat_fmt(h, "%s", name); |
|
break; |
|
default: |
|
bufncat(h, p, 2); |
|
break; |
|
} |
|
pp = p + 2; |
|
} |
|
if (pp) |
|
bufcat(h, pp); |
} |
} |
|
|
|
void |
int |
bufcat_su(struct html *h, const char *p, const struct roffsu *su) |
md_exit_html(void *data, int flush) |
|
{ |
{ |
|
double v; |
|
|
return(mlg_exit((struct md_mlg *)data, flush)); |
v = su->scale; |
|
if (SCALE_MM == su->unit && 0.0 == (v /= 100.0)) |
|
v = 1.0; |
|
else if (SCALE_BU == su->unit) |
|
v /= 24.0; |
|
|
|
bufcat_fmt(h, "%s: %.2f%s;", p, v, roffscales[su->unit]); |
} |
} |
|
|
|
void |
void * |
bufcat_id(struct html *h, const char *src) |
md_init_html(const struct md_args *args, |
|
struct md_mbuf *mbuf, const struct md_rbuf *rbuf) |
|
{ |
{ |
struct ml_cbs cbs; |
|
|
|
cbs.ml_alloc = html_alloc; |
/* Cf. <http://www.w3.org/TR/html4/types.html#h-6.2>. */ |
cbs.ml_free = html_free; |
|
cbs.ml_begintag = html_begintag; |
|
cbs.ml_endtag = html_endtag; |
|
cbs.ml_begin = html_begin; |
|
cbs.ml_end = html_end; |
|
|
|
return(mlg_alloc(args, rbuf, mbuf, &cbs)); |
while ('\0' != *src) |
|
bufcat_fmt(h, "%.2x", *src++); |
} |
} |
|
|