[BACK]Return to html.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Annotation of mandoc/html.c, Revision 1.144

1.144   ! kristaps    1: /*     $Id: html.c,v 1.143 2011/05/17 11:38:18 kristaps Exp $ */
1.1       kristaps    2: /*
1.126     schwarze    3:  * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
                      4:  * Copyright (c) 2011 Ingo Schwarze <schwarze@openbsd.org>
1.1       kristaps    5:  *
                      6:  * Permission to use, copy, modify, and distribute this software for any
1.29      kristaps    7:  * purpose with or without fee is hereby granted, provided that the above
                      8:  * copyright notice and this permission notice appear in all copies.
1.1       kristaps    9:  *
1.29      kristaps   10:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
                     11:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
                     12:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
                     13:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
                     14:  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
                     15:  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
                     16:  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1.1       kristaps   17:  */
1.92      kristaps   18: #ifdef HAVE_CONFIG_H
                     19: #include "config.h"
                     20: #endif
                     21:
1.41      kristaps   22: #include <sys/types.h>
1.30      kristaps   23:
1.1       kristaps   24: #include <assert.h>
1.68      kristaps   25: #include <ctype.h>
1.76      kristaps   26: #include <stdarg.h>
1.29      kristaps   27: #include <stdio.h>
1.63      kristaps   28: #include <stdint.h>
1.1       kristaps   29: #include <stdlib.h>
1.33      kristaps   30: #include <string.h>
1.45      kristaps   31: #include <unistd.h>
1.1       kristaps   32:
1.100     kristaps   33: #include "mandoc.h"
1.138     kristaps   34: #include "libmandoc.h"
1.58      kristaps   35: #include "out.h"
1.51      kristaps   36: #include "html.h"
1.64      kristaps   37: #include "main.h"
1.63      kristaps   38:
1.29      kristaps   39: struct htmldata {
1.63      kristaps   40:        const char       *name;
1.29      kristaps   41:        int               flags;
1.30      kristaps   42: #define        HTML_CLRLINE     (1 << 0)
                     43: #define        HTML_NOSTACK     (1 << 1)
1.93      kristaps   44: #define        HTML_AUTOCLOSE   (1 << 2) /* Tag has auto-closure. */
1.29      kristaps   45: };
1.7       kristaps   46:
1.29      kristaps   47: static const struct htmldata htmltags[TAG_MAX] = {
1.30      kristaps   48:        {"html",        HTML_CLRLINE}, /* TAG_HTML */
                     49:        {"head",        HTML_CLRLINE}, /* TAG_HEAD */
                     50:        {"body",        HTML_CLRLINE}, /* TAG_BODY */
1.93      kristaps   51:        {"meta",        HTML_CLRLINE | HTML_NOSTACK | HTML_AUTOCLOSE}, /* TAG_META */
1.33      kristaps   52:        {"title",       HTML_CLRLINE}, /* TAG_TITLE */
1.30      kristaps   53:        {"div",         HTML_CLRLINE}, /* TAG_DIV */
1.29      kristaps   54:        {"h1",          0}, /* TAG_H1 */
                     55:        {"h2",          0}, /* TAG_H2 */
                     56:        {"span",        0}, /* TAG_SPAN */
1.99      kristaps   57:        {"link",        HTML_CLRLINE | HTML_NOSTACK | HTML_AUTOCLOSE}, /* TAG_LINK */
1.93      kristaps   58:        {"br",          HTML_CLRLINE | HTML_NOSTACK | HTML_AUTOCLOSE}, /* TAG_BR */
1.30      kristaps   59:        {"a",           0}, /* TAG_A */
1.33      kristaps   60:        {"table",       HTML_CLRLINE}, /* TAG_TABLE */
1.114     kristaps   61:        {"tbody",       HTML_CLRLINE}, /* TAG_TBODY */
1.93      kristaps   62:        {"col",         HTML_CLRLINE | HTML_NOSTACK | HTML_AUTOCLOSE}, /* TAG_COL */
1.33      kristaps   63:        {"tr",          HTML_CLRLINE}, /* TAG_TR */
                     64:        {"td",          HTML_CLRLINE}, /* TAG_TD */
1.34      kristaps   65:        {"li",          HTML_CLRLINE}, /* TAG_LI */
                     66:        {"ul",          HTML_CLRLINE}, /* TAG_UL */
                     67:        {"ol",          HTML_CLRLINE}, /* TAG_OL */
1.114     kristaps   68:        {"dl",          HTML_CLRLINE}, /* TAG_DL */
                     69:        {"dt",          HTML_CLRLINE}, /* TAG_DT */
                     70:        {"dd",          HTML_CLRLINE}, /* TAG_DD */
1.115     kristaps   71:        {"blockquote",  HTML_CLRLINE}, /* TAG_BLOCKQUOTE */
1.116     kristaps   72:        {"p",           HTML_CLRLINE | HTML_NOSTACK | HTML_AUTOCLOSE}, /* TAG_P */
1.118     kristaps   73:        {"pre",         HTML_CLRLINE }, /* TAG_PRE */
1.119     kristaps   74:        {"b",           0 }, /* TAG_B */
1.120     kristaps   75:        {"i",           0 }, /* TAG_I */
1.121     kristaps   76:        {"code",        0 }, /* TAG_CODE */
1.122     kristaps   77:        {"small",       0 }, /* TAG_SMALL */
1.90      kristaps   78: };
                     79:
1.82      kristaps   80: static const char      *const htmlattrs[ATTR_MAX] = {
1.119     kristaps   81:        "http-equiv", /* ATTR_HTTPEQUIV */
                     82:        "content", /* ATTR_CONTENT */
                     83:        "name", /* ATTR_NAME */
                     84:        "rel", /* ATTR_REL */
                     85:        "href", /* ATTR_HREF */
                     86:        "type", /* ATTR_TYPE */
                     87:        "media", /* ATTR_MEDIA */
                     88:        "class", /* ATTR_CLASS */
                     89:        "style", /* ATTR_STYLE */
                     90:        "width", /* ATTR_WIDTH */
                     91:        "id", /* ATTR_ID */
                     92:        "summary", /* ATTR_SUMMARY */
                     93:        "align", /* ATTR_ALIGN */
1.125     kristaps   94:        "colspan", /* ATTR_COLSPAN */
1.29      kristaps   95: };
1.10      kristaps   96:
1.140     kristaps   97: static const char      *const roffscales[SCALE_MAX] = {
                     98:        "cm", /* SCALE_CM */
                     99:        "in", /* SCALE_IN */
                    100:        "pc", /* SCALE_PC */
                    101:        "pt", /* SCALE_PT */
                    102:        "em", /* SCALE_EM */
                    103:        "em", /* SCALE_MM */
                    104:        "ex", /* SCALE_EN */
                    105:        "ex", /* SCALE_BU */
                    106:        "em", /* SCALE_VS */
                    107:        "ex", /* SCALE_FS */
                    108: };
                    109:
1.141     kristaps  110: static void     bufncat(struct html *, const char *, size_t);
                    111: static void     print_spec(struct html *, const char *, size_t);
                    112: static void     print_res(struct html *, const char *, size_t);
                    113: static void     print_ctag(struct html *, enum htmltag);
                    114: static int      print_encode(struct html *, const char *, int);
                    115: static void     print_metaf(struct html *, enum mandoc_esc);
                    116: static void     print_attr(struct html *, const char *, const char *);
                    117: static void     *ml_alloc(char *, enum htmltype);
1.82      kristaps  118:
1.93      kristaps  119: static void *
                    120: ml_alloc(char *outopts, enum htmltype type)
1.10      kristaps  121: {
1.30      kristaps  122:        struct html     *h;
1.63      kristaps  123:        const char      *toks[4];
                    124:        char            *v;
1.43      kristaps  125:
                    126:        toks[0] = "style";
1.53      kristaps  127:        toks[1] = "man";
1.54      kristaps  128:        toks[2] = "includes";
                    129:        toks[3] = NULL;
1.30      kristaps  130:
1.128     kristaps  131:        h = mandoc_calloc(1, sizeof(struct html));
1.10      kristaps  132:
1.93      kristaps  133:        h->type = type;
1.66      kristaps  134:        h->tags.head = NULL;
1.136     kristaps  135:        h->symtab = mchars_alloc();
1.41      kristaps  136:
1.47      kristaps  137:        while (outopts && *outopts)
1.63      kristaps  138:                switch (getsubopt(&outopts, UNCONST(toks), &v)) {
1.43      kristaps  139:                case (0):
                    140:                        h->style = v;
                    141:                        break;
                    142:                case (1):
1.53      kristaps  143:                        h->base_man = v;
1.43      kristaps  144:                        break;
1.54      kristaps  145:                case (2):
                    146:                        h->base_includes = v;
                    147:                        break;
1.43      kristaps  148:                default:
                    149:                        break;
                    150:                }
                    151:
1.30      kristaps  152:        return(h);
1.29      kristaps  153: }
1.10      kristaps  154:
1.93      kristaps  155: void *
                    156: html_alloc(char *outopts)
                    157: {
                    158:
                    159:        return(ml_alloc(outopts, HTML_HTML_4_01_STRICT));
                    160: }
                    161:
                    162:
                    163: void *
                    164: xhtml_alloc(char *outopts)
                    165: {
                    166:
                    167:        return(ml_alloc(outopts, HTML_XHTML_1_0_STRICT));
                    168: }
                    169:
1.33      kristaps  170:
1.29      kristaps  171: void
                    172: html_free(void *p)
                    173: {
1.30      kristaps  174:        struct tag      *tag;
                    175:        struct html     *h;
                    176:
                    177:        h = (struct html *)p;
1.37      kristaps  178:
1.66      kristaps  179:        while ((tag = h->tags.head) != NULL) {
                    180:                h->tags.head = tag->next;
1.30      kristaps  181:                free(tag);
                    182:        }
1.36      kristaps  183:
                    184:        if (h->symtab)
1.133     kristaps  185:                mchars_free(h->symtab);
1.53      kristaps  186:
1.30      kristaps  187:        free(h);
1.10      kristaps  188: }
1.2       kristaps  189:
1.33      kristaps  190:
1.51      kristaps  191: void
1.29      kristaps  192: print_gen_head(struct html *h)
                    193: {
1.41      kristaps  194:        struct htmlpair  tag[4];
                    195:
                    196:        tag[0].key = ATTR_HTTPEQUIV;
                    197:        tag[0].val = "Content-Type";
                    198:        tag[1].key = ATTR_CONTENT;
                    199:        tag[1].val = "text/html; charset=utf-8";
                    200:        print_otag(h, TAG_META, 2, tag);
                    201:
                    202:        tag[0].key = ATTR_NAME;
                    203:        tag[0].val = "resource-type";
                    204:        tag[1].key = ATTR_CONTENT;
                    205:        tag[1].val = "document";
                    206:        print_otag(h, TAG_META, 2, tag);
                    207:
                    208:        if (h->style) {
                    209:                tag[0].key = ATTR_REL;
                    210:                tag[0].val = "stylesheet";
                    211:                tag[1].key = ATTR_HREF;
                    212:                tag[1].val = h->style;
                    213:                tag[2].key = ATTR_TYPE;
                    214:                tag[2].val = "text/css";
                    215:                tag[3].key = ATTR_MEDIA;
                    216:                tag[3].val = "all";
                    217:                print_otag(h, TAG_LINK, 4, tag);
                    218:        }
1.4       kristaps  219: }
                    220:
1.126     schwarze  221: static void
1.132     kristaps  222: print_spec(struct html *h, const char *p, size_t len)
1.32      kristaps  223: {
1.107     kristaps  224:        int              cp;
1.32      kristaps  225:        const char      *rhs;
                    226:        size_t           sz;
                    227:
1.133     kristaps  228:        if ((cp = mchars_spec2cp(h->symtab, p, len)) > 0) {
1.107     kristaps  229:                printf("&#%d;", cp);
                    230:                return;
1.132     kristaps  231:        } else if (-1 == cp && 1 == len) {
1.108     kristaps  232:                fwrite(p, 1, len, stdout);
                    233:                return;
1.107     kristaps  234:        } else if (-1 == cp)
                    235:                return;
1.32      kristaps  236:
1.133     kristaps  237:        if (NULL != (rhs = mchars_spec2str(h->symtab, p, len, &sz)))
1.107     kristaps  238:                fwrite(rhs, 1, sz, stdout);
1.32      kristaps  239: }
                    240:
1.33      kristaps  241:
1.32      kristaps  242: static void
1.83      kristaps  243: print_res(struct html *h, const char *p, size_t len)
1.32      kristaps  244: {
1.107     kristaps  245:        int              cp;
1.32      kristaps  246:        const char      *rhs;
                    247:        size_t           sz;
                    248:
1.133     kristaps  249:        if ((cp = mchars_res2cp(h->symtab, p, len)) > 0) {
1.107     kristaps  250:                printf("&#%d;", cp);
                    251:                return;
                    252:        } else if (-1 == cp)
                    253:                return;
1.32      kristaps  254:
1.133     kristaps  255:        if (NULL != (rhs = mchars_res2str(h->symtab, p, len, &sz)))
1.107     kristaps  256:                fwrite(rhs, 1, sz, stdout);
1.32      kristaps  257: }
                    258:
1.33      kristaps  259:
1.88      kristaps  260: static void
1.132     kristaps  261: print_metaf(struct html *h, enum mandoc_esc deco)
1.88      kristaps  262: {
1.90      kristaps  263:        enum htmlfont    font;
1.88      kristaps  264:
                    265:        switch (deco) {
1.132     kristaps  266:        case (ESCAPE_FONTPREV):
1.90      kristaps  267:                font = h->metal;
1.88      kristaps  268:                break;
1.132     kristaps  269:        case (ESCAPE_FONTITALIC):
1.90      kristaps  270:                font = HTMLFONT_ITALIC;
                    271:                break;
1.132     kristaps  272:        case (ESCAPE_FONTBOLD):
1.90      kristaps  273:                font = HTMLFONT_BOLD;
1.88      kristaps  274:                break;
1.132     kristaps  275:        case (ESCAPE_FONTROMAN):
1.90      kristaps  276:                font = HTMLFONT_NONE;
1.88      kristaps  277:                break;
                    278:        default:
                    279:                abort();
                    280:                /* NOTREACHED */
                    281:        }
                    282:
1.122     kristaps  283:        if (h->metaf) {
                    284:                print_tagq(h, h->metaf);
                    285:                h->metaf = NULL;
                    286:        }
                    287:
                    288:        h->metal = h->metac;
                    289:        h->metac = font;
                    290:
                    291:        if (HTMLFONT_NONE != font)
                    292:                h->metaf = HTMLFONT_BOLD == font ?
                    293:                        print_otag(h, TAG_B, 0, NULL) :
                    294:                        print_otag(h, TAG_I, 0, NULL);
1.88      kristaps  295: }
                    296:
1.138     kristaps  297: int
                    298: html_strlen(const char *cp)
                    299: {
                    300:        int              ssz, sz;
                    301:        const char      *seq, *p;
                    302:
                    303:        /*
                    304:         * Account for escaped sequences within string length
                    305:         * calculations.  This follows the logic in term_strlen() as we
                    306:         * must calculate the width of produced strings.
                    307:         * Assume that characters are always width of "1".  This is
                    308:         * hacky, but it gets the job done for approximation of widths.
                    309:         */
                    310:
                    311:        sz = 0;
                    312:        while (NULL != (p = strchr(cp, '\\'))) {
                    313:                sz += (int)(p - cp);
                    314:                ++cp;
                    315:                switch (mandoc_escape(&cp, &seq, &ssz)) {
                    316:                case (ESCAPE_ERROR):
                    317:                        return(sz);
1.144   ! kristaps  318:                case (ESCAPE_UNICODE):
        !           319:                        /* FALLTHROUGH */
1.139     kristaps  320:                case (ESCAPE_NUMBERED):
                    321:                        /* FALLTHROUGH */
1.138     kristaps  322:                case (ESCAPE_PREDEF):
1.139     kristaps  323:                        /* FALLTHROUGH */
1.138     kristaps  324:                case (ESCAPE_SPECIAL):
                    325:                        sz++;
                    326:                        break;
                    327:                default:
                    328:                        break;
                    329:                }
                    330:        }
                    331:
                    332:        assert(sz >= 0);
                    333:        return(sz + strlen(cp));
                    334: }
1.88      kristaps  335:
1.85      kristaps  336: static int
1.88      kristaps  337: print_encode(struct html *h, const char *p, int norecurse)
1.29      kristaps  338: {
1.77      kristaps  339:        size_t           sz;
1.141     kristaps  340:        int              c, len, nospace;
1.82      kristaps  341:        const char      *seq;
1.132     kristaps  342:        enum mandoc_esc  esc;
1.100     kristaps  343:        static const char rejs[6] = { '\\', '<', '>', '&', ASCII_HYPH, '\0' };
1.14      kristaps  344:
1.85      kristaps  345:        nospace = 0;
                    346:
1.132     kristaps  347:        while ('\0' != *p) {
1.100     kristaps  348:                sz = strcspn(p, rejs);
1.77      kristaps  349:
                    350:                fwrite(p, 1, sz, stdout);
1.132     kristaps  351:                p += (int)sz;
1.77      kristaps  352:
1.132     kristaps  353:                if ('\0' == *p)
                    354:                        break;
                    355:
                    356:                switch (*p++) {
                    357:                case ('<'):
1.82      kristaps  358:                        printf("&lt;");
                    359:                        continue;
1.132     kristaps  360:                case ('>'):
1.82      kristaps  361:                        printf("&gt;");
                    362:                        continue;
1.132     kristaps  363:                case ('&'):
1.82      kristaps  364:                        printf("&amp;");
1.34      kristaps  365:                        continue;
1.132     kristaps  366:                case (ASCII_HYPH):
1.100     kristaps  367:                        putchar('-');
                    368:                        continue;
1.132     kristaps  369:                default:
1.77      kristaps  370:                        break;
1.132     kristaps  371:                }
1.77      kristaps  372:
1.132     kristaps  373:                esc = mandoc_escape(&p, &seq, &len);
                    374:                if (ESCAPE_ERROR == esc)
                    375:                        break;
1.82      kristaps  376:
1.132     kristaps  377:                switch (esc) {
1.144   ! kristaps  378:                case (ESCAPE_UNICODE):
        !           379:                        /* Skip passed "u" header. */
        !           380:                        c = mchars_num2uc(seq + 1, len - 1);
        !           381:                        if ('\0' != c)
        !           382:                                printf("&#x%x;", c);
        !           383:                        break;
1.132     kristaps  384:                case (ESCAPE_NUMBERED):
1.141     kristaps  385:                        c = mchars_num2char(seq, len);
                    386:                        if ('\0' != c)
                    387:                                putchar(c);
1.126     schwarze  388:                        break;
1.132     kristaps  389:                case (ESCAPE_PREDEF):
                    390:                        print_res(h, seq, len);
1.82      kristaps  391:                        break;
1.132     kristaps  392:                case (ESCAPE_SPECIAL):
                    393:                        print_spec(h, seq, len);
1.82      kristaps  394:                        break;
1.132     kristaps  395:                case (ESCAPE_FONTPREV):
1.90      kristaps  396:                        /* FALLTHROUGH */
1.132     kristaps  397:                case (ESCAPE_FONTBOLD):
1.88      kristaps  398:                        /* FALLTHROUGH */
1.132     kristaps  399:                case (ESCAPE_FONTITALIC):
1.88      kristaps  400:                        /* FALLTHROUGH */
1.132     kristaps  401:                case (ESCAPE_FONTROMAN):
1.88      kristaps  402:                        if (norecurse)
                    403:                                break;
1.132     kristaps  404:                        print_metaf(h, esc);
                    405:                        break;
                    406:                case (ESCAPE_NOSPACE):
                    407:                        if ('\0' == *p)
                    408:                                nospace = 1;
1.88      kristaps  409:                        break;
1.82      kristaps  410:                default:
                    411:                        break;
                    412:                }
1.32      kristaps  413:        }
1.85      kristaps  414:
                    415:        return(nospace);
1.14      kristaps  416: }
                    417:
                    418:
1.94      kristaps  419: static void
                    420: print_attr(struct html *h, const char *key, const char *val)
                    421: {
                    422:        printf(" %s=\"", key);
                    423:        (void)print_encode(h, val, 1);
                    424:        putchar('\"');
                    425: }
                    426:
                    427:
1.51      kristaps  428: struct tag *
1.29      kristaps  429: print_otag(struct html *h, enum htmltag tag,
                    430:                int sz, const struct htmlpair *p)
1.14      kristaps  431: {
1.29      kristaps  432:        int              i;
1.30      kristaps  433:        struct tag      *t;
                    434:
1.94      kristaps  435:        /* Push this tags onto the stack of open scopes. */
                    436:
1.30      kristaps  437:        if ( ! (HTML_NOSTACK & htmltags[tag].flags)) {
1.128     kristaps  438:                t = mandoc_malloc(sizeof(struct tag));
1.30      kristaps  439:                t->tag = tag;
1.66      kristaps  440:                t->next = h->tags.head;
                    441:                h->tags.head = t;
1.30      kristaps  442:        } else
                    443:                t = NULL;
1.29      kristaps  444:
                    445:        if ( ! (HTML_NOSPACE & h->flags))
1.105     kristaps  446:                if ( ! (HTML_CLRLINE & htmltags[tag].flags)) {
                    447:                        /* Manage keeps! */
                    448:                        if ( ! (HTML_KEEP & h->flags)) {
                    449:                                if (HTML_PREKEEP & h->flags)
                    450:                                        h->flags |= HTML_KEEP;
                    451:                                putchar(' ');
                    452:                        } else
                    453:                                printf("&#160;");
                    454:                }
1.29      kristaps  455:
1.109     kristaps  456:        if ( ! (h->flags & HTML_NONOSPACE))
                    457:                h->flags &= ~HTML_NOSPACE;
1.110     kristaps  458:        else
                    459:                h->flags |= HTML_NOSPACE;
1.109     kristaps  460:
1.94      kristaps  461:        /* Print out the tag name and attributes. */
                    462:
1.29      kristaps  463:        printf("<%s", htmltags[tag].name);
1.94      kristaps  464:        for (i = 0; i < sz; i++)
                    465:                print_attr(h, htmlattrs[p[i].key], p[i].val);
                    466:
                    467:        /* Add non-overridable attributes. */
                    468:
                    469:        if (TAG_HTML == tag && HTML_XHTML_1_0_STRICT == h->type) {
                    470:                print_attr(h, "xmlns", "http://www.w3.org/1999/xhtml");
                    471:                print_attr(h, "xml:lang", "en");
                    472:                print_attr(h, "lang", "en");
1.29      kristaps  473:        }
1.93      kristaps  474:
1.134     kristaps  475:        /* Accommodate for XML "well-formed" singleton escaping. */
1.94      kristaps  476:
1.93      kristaps  477:        if (HTML_AUTOCLOSE & htmltags[tag].flags)
                    478:                switch (h->type) {
                    479:                case (HTML_XHTML_1_0_STRICT):
                    480:                        putchar('/');
                    481:                        break;
                    482:                default:
                    483:                        break;
                    484:                }
                    485:
1.78      kristaps  486:        putchar('>');
1.14      kristaps  487:
1.29      kristaps  488:        h->flags |= HTML_NOSPACE;
1.117     kristaps  489:
                    490:        if ((HTML_AUTOCLOSE | HTML_CLRLINE) & htmltags[tag].flags)
                    491:                putchar('\n');
                    492:
1.30      kristaps  493:        return(t);
1.14      kristaps  494: }
                    495:
                    496:
1.29      kristaps  497: static void
                    498: print_ctag(struct html *h, enum htmltag tag)
1.14      kristaps  499: {
                    500:
1.29      kristaps  501:        printf("</%s>", htmltags[tag].name);
1.71      kristaps  502:        if (HTML_CLRLINE & htmltags[tag].flags) {
1.29      kristaps  503:                h->flags |= HTML_NOSPACE;
1.78      kristaps  504:                putchar('\n');
1.87      kristaps  505:        }
1.14      kristaps  506: }
                    507:
1.51      kristaps  508: void
1.93      kristaps  509: print_gen_decls(struct html *h)
1.1       kristaps  510: {
1.93      kristaps  511:        const char      *doctype;
                    512:        const char      *dtd;
1.96      kristaps  513:        const char      *name;
1.93      kristaps  514:
                    515:        switch (h->type) {
                    516:        case (HTML_HTML_4_01_STRICT):
1.96      kristaps  517:                name = "HTML";
1.93      kristaps  518:                doctype = "-//W3C//DTD HTML 4.01//EN";
                    519:                dtd = "http://www.w3.org/TR/html4/strict.dtd";
                    520:                break;
                    521:        default:
1.141     kristaps  522:                puts("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
1.96      kristaps  523:                name = "html";
1.93      kristaps  524:                doctype = "-//W3C//DTD XHTML 1.0 Strict//EN";
                    525:                dtd = "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";
                    526:                break;
                    527:        }
                    528:
1.96      kristaps  529:        printf("<!DOCTYPE %s PUBLIC \"%s\" \"%s\">\n",
                    530:                        name, doctype, dtd);
1.1       kristaps  531: }
                    532:
1.51      kristaps  533: void
1.104     kristaps  534: print_text(struct html *h, const char *word)
1.1       kristaps  535: {
                    536:
1.105     kristaps  537:        if ( ! (HTML_NOSPACE & h->flags)) {
                    538:                /* Manage keeps! */
                    539:                if ( ! (HTML_KEEP & h->flags)) {
                    540:                        if (HTML_PREKEEP & h->flags)
                    541:                                h->flags |= HTML_KEEP;
                    542:                        putchar(' ');
                    543:                } else
                    544:                        printf("&#160;");
                    545:        }
1.30      kristaps  546:
1.122     kristaps  547:        assert(NULL == h->metaf);
                    548:        if (HTMLFONT_NONE != h->metac)
                    549:                h->metaf = HTMLFONT_BOLD == h->metac ?
                    550:                        print_otag(h, TAG_B, 0, NULL) :
                    551:                        print_otag(h, TAG_I, 0, NULL);
                    552:
1.104     kristaps  553:        assert(word);
                    554:        if ( ! print_encode(h, word, 0))
1.109     kristaps  555:                if ( ! (h->flags & HTML_NONOSPACE))
                    556:                        h->flags &= ~HTML_NOSPACE;
1.122     kristaps  557:
                    558:        if (h->metaf) {
                    559:                print_tagq(h, h->metaf);
                    560:                h->metaf = NULL;
                    561:        }
1.113     schwarze  562:
                    563:        h->flags &= ~HTML_IGNDELIM;
1.1       kristaps  564: }
1.30      kristaps  565:
                    566:
1.51      kristaps  567: void
1.30      kristaps  568: print_tagq(struct html *h, const struct tag *until)
                    569: {
                    570:        struct tag      *tag;
                    571:
1.66      kristaps  572:        while ((tag = h->tags.head) != NULL) {
1.125     kristaps  573:                /*
                    574:                 * Remember to close out and nullify the current
                    575:                 * meta-font and table, if applicable.
                    576:                 */
1.89      kristaps  577:                if (tag == h->metaf)
                    578:                        h->metaf = NULL;
1.125     kristaps  579:                if (tag == h->tblt)
                    580:                        h->tblt = NULL;
1.30      kristaps  581:                print_ctag(h, tag->tag);
1.66      kristaps  582:                h->tags.head = tag->next;
1.30      kristaps  583:                free(tag);
                    584:                if (until && tag == until)
                    585:                        return;
                    586:        }
                    587: }
                    588:
                    589:
1.51      kristaps  590: void
1.30      kristaps  591: print_stagq(struct html *h, const struct tag *suntil)
                    592: {
                    593:        struct tag      *tag;
                    594:
1.66      kristaps  595:        while ((tag = h->tags.head) != NULL) {
1.30      kristaps  596:                if (suntil && tag == suntil)
                    597:                        return;
1.125     kristaps  598:                /*
                    599:                 * Remember to close out and nullify the current
                    600:                 * meta-font and table, if applicable.
                    601:                 */
1.89      kristaps  602:                if (tag == h->metaf)
                    603:                        h->metaf = NULL;
1.125     kristaps  604:                if (tag == h->tblt)
                    605:                        h->tblt = NULL;
1.30      kristaps  606:                print_ctag(h, tag->tag);
1.66      kristaps  607:                h->tags.head = tag->next;
1.30      kristaps  608:                free(tag);
                    609:        }
                    610: }
1.55      kristaps  611:
                    612: void
                    613: bufinit(struct html *h)
                    614: {
                    615:
                    616:        h->buf[0] = '\0';
                    617:        h->buflen = 0;
                    618: }
                    619:
                    620: void
1.58      kristaps  621: bufcat_style(struct html *h, const char *key, const char *val)
                    622: {
                    623:
                    624:        bufcat(h, key);
1.141     kristaps  625:        bufcat(h, ":");
1.58      kristaps  626:        bufcat(h, val);
1.141     kristaps  627:        bufcat(h, ";");
1.58      kristaps  628: }
                    629:
                    630: void
1.55      kristaps  631: bufcat(struct html *h, const char *p)
                    632: {
                    633:
1.141     kristaps  634:        h->buflen = strlcat(h->buf, p, BUFSIZ);
                    635:        assert(h->buflen < BUFSIZ);
                    636:        h->buflen--;
1.55      kristaps  637: }
                    638:
                    639: void
1.141     kristaps  640: bufcat_fmt(struct html *h, const char *fmt, ...)
1.55      kristaps  641: {
                    642:        va_list          ap;
                    643:
                    644:        va_start(ap, fmt);
1.56      kristaps  645:        (void)vsnprintf(h->buf + (int)h->buflen,
1.55      kristaps  646:                        BUFSIZ - h->buflen - 1, fmt, ap);
                    647:        va_end(ap);
                    648:        h->buflen = strlen(h->buf);
                    649: }
                    650:
1.141     kristaps  651: static void
1.55      kristaps  652: bufncat(struct html *h, const char *p, size_t sz)
                    653: {
                    654:
1.141     kristaps  655:        assert(h->buflen + sz + 1 < BUFSIZ);
                    656:        strncat(h->buf, p, sz);
1.55      kristaps  657:        h->buflen += sz;
                    658: }
                    659:
                    660: void
                    661: buffmt_includes(struct html *h, const char *name)
                    662: {
                    663:        const char      *p, *pp;
                    664:
                    665:        pp = h->base_includes;
1.61      kristaps  666:
1.143     kristaps  667:        bufinit(h);
1.61      kristaps  668:        while (NULL != (p = strchr(pp, '%'))) {
1.56      kristaps  669:                bufncat(h, pp, (size_t)(p - pp));
1.55      kristaps  670:                switch (*(p + 1)) {
                    671:                case('I'):
                    672:                        bufcat(h, name);
                    673:                        break;
                    674:                default:
                    675:                        bufncat(h, p, 2);
                    676:                        break;
                    677:                }
                    678:                pp = p + 2;
                    679:        }
                    680:        if (pp)
                    681:                bufcat(h, pp);
                    682: }
                    683:
                    684: void
                    685: buffmt_man(struct html *h,
                    686:                const char *name, const char *sec)
                    687: {
                    688:        const char      *p, *pp;
                    689:
                    690:        pp = h->base_man;
1.61      kristaps  691:
1.143     kristaps  692:        bufinit(h);
1.61      kristaps  693:        while (NULL != (p = strchr(pp, '%'))) {
1.56      kristaps  694:                bufncat(h, pp, (size_t)(p - pp));
1.55      kristaps  695:                switch (*(p + 1)) {
                    696:                case('S'):
1.58      kristaps  697:                        bufcat(h, sec ? sec : "1");
1.55      kristaps  698:                        break;
                    699:                case('N'):
1.141     kristaps  700:                        bufcat_fmt(h, name);
1.55      kristaps  701:                        break;
                    702:                default:
                    703:                        bufncat(h, p, 2);
                    704:                        break;
                    705:                }
                    706:                pp = p + 2;
                    707:        }
                    708:        if (pp)
                    709:                bufcat(h, pp);
                    710: }
1.58      kristaps  711:
                    712: void
                    713: bufcat_su(struct html *h, const char *p, const struct roffsu *su)
                    714: {
1.62      kristaps  715:        double           v;
1.58      kristaps  716:
                    717:        v = su->scale;
1.140     kristaps  718:        if (SCALE_MM == su->unit && 0.0 == (v /= 100.0))
                    719:                v = 1.0;
1.58      kristaps  720:
1.141     kristaps  721:        bufcat_fmt(h, "%s: %.2f%s;", p, v, roffscales[su->unit]);
1.58      kristaps  722: }
1.68      kristaps  723:
                    724: void
1.142     kristaps  725: bufcat_id(struct html *h, const char *src)
1.68      kristaps  726: {
                    727:
                    728:        /* Cf. <http://www.w3.org/TR/html4/types.html#h-6.2>. */
                    729:
1.142     kristaps  730:        while ('\0' != *src)
                    731:                bufcat_fmt(h, "%.2x", *src++);
1.68      kristaps  732: }

CVSweb