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

Annotation of mandoc/html.c, Revision 1.89

1.89    ! kristaps    1: /*     $Id: html.c,v 1.88 2009/11/14 19:23:58 kristaps Exp $ */
1.1       kristaps    2: /*
1.29      kristaps    3:  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
1.1       kristaps    4:  *
                      5:  * Permission to use, copy, modify, and distribute this software for any
1.29      kristaps    6:  * purpose with or without fee is hereby granted, provided that the above
                      7:  * copyright notice and this permission notice appear in all copies.
1.1       kristaps    8:  *
1.29      kristaps    9:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
                     10:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
                     11:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
                     12:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
                     13:  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
                     14:  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
                     15:  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1.1       kristaps   16:  */
1.41      kristaps   17: #include <sys/types.h>
1.30      kristaps   18:
1.1       kristaps   19: #include <assert.h>
1.68      kristaps   20: #include <ctype.h>
1.76      kristaps   21: #include <stdarg.h>
1.29      kristaps   22: #include <stdio.h>
1.63      kristaps   23: #include <stdint.h>
1.1       kristaps   24: #include <stdlib.h>
1.33      kristaps   25: #include <string.h>
1.45      kristaps   26: #include <unistd.h>
1.1       kristaps   27:
1.58      kristaps   28: #include "out.h"
1.32      kristaps   29: #include "chars.h"
1.51      kristaps   30: #include "html.h"
1.64      kristaps   31: #include "main.h"
1.2       kristaps   32:
1.63      kristaps   33: #define        UNCONST(a)      ((void *)(uintptr_t)(const void *)(a))
                     34:
1.29      kristaps   35: #define        DOCTYPE         "-//W3C//DTD HTML 4.01//EN"
                     36: #define        DTD             "http://www.w3.org/TR/html4/strict.dtd"
1.8       kristaps   37:
1.29      kristaps   38: struct htmldata {
1.63      kristaps   39:        const char       *name;
1.29      kristaps   40:        int               flags;
1.30      kristaps   41: #define        HTML_CLRLINE     (1 << 0)
                     42: #define        HTML_NOSTACK     (1 << 1)
1.29      kristaps   43: };
1.7       kristaps   44:
1.29      kristaps   45: static const struct htmldata htmltags[TAG_MAX] = {
1.30      kristaps   46:        {"html",        HTML_CLRLINE}, /* TAG_HTML */
                     47:        {"head",        HTML_CLRLINE}, /* TAG_HEAD */
                     48:        {"body",        HTML_CLRLINE}, /* TAG_BODY */
                     49:        {"meta",        HTML_CLRLINE | HTML_NOSTACK}, /* TAG_META */
1.33      kristaps   50:        {"title",       HTML_CLRLINE}, /* TAG_TITLE */
1.30      kristaps   51:        {"div",         HTML_CLRLINE}, /* TAG_DIV */
1.29      kristaps   52:        {"h1",          0}, /* TAG_H1 */
                     53:        {"h2",          0}, /* TAG_H2 */
1.30      kristaps   54:        {"p",           HTML_CLRLINE}, /* TAG_P */
1.29      kristaps   55:        {"span",        0}, /* TAG_SPAN */
1.30      kristaps   56:        {"link",        HTML_CLRLINE | HTML_NOSTACK}, /* TAG_LINK */
                     57:        {"br",          HTML_CLRLINE | HTML_NOSTACK}, /* TAG_LINK */
                     58:        {"a",           0}, /* TAG_A */
1.33      kristaps   59:        {"table",       HTML_CLRLINE}, /* TAG_TABLE */
                     60:        {"col",         HTML_CLRLINE | HTML_NOSTACK}, /* TAG_COL */
                     61:        {"tr",          HTML_CLRLINE}, /* TAG_TR */
                     62:        {"td",          HTML_CLRLINE}, /* TAG_TD */
1.34      kristaps   63:        {"li",          HTML_CLRLINE}, /* TAG_LI */
                     64:        {"ul",          HTML_CLRLINE}, /* TAG_UL */
                     65:        {"ol",          HTML_CLRLINE}, /* TAG_OL */
1.41      kristaps   66:        {"base",        HTML_CLRLINE | HTML_NOSTACK}, /* TAG_BASE */
1.29      kristaps   67: };
1.10      kristaps   68:
1.82      kristaps   69: static const char      *const htmlattrs[ATTR_MAX] = {
1.29      kristaps   70:        "http-equiv",
                     71:        "content",
                     72:        "name",
                     73:        "rel",
                     74:        "href",
                     75:        "type",
                     76:        "media",
1.33      kristaps   77:        "class",
                     78:        "style",
                     79:        "width",
                     80:        "valign",
1.54      kristaps   81:        "target",
1.57      kristaps   82:        "id",
1.67      kristaps   83:        "summary",
1.29      kristaps   84: };
1.10      kristaps   85:
1.33      kristaps   86: #ifdef __linux__
1.43      kristaps   87: extern int               getsubopt(char **, char * const *, char **);
1.33      kristaps   88: #endif
1.29      kristaps   89:
1.82      kristaps   90:
1.83      kristaps   91: static void              print_spec(struct html *, const char *, size_t);
                     92: static void              print_res(struct html *, const char *, size_t);
1.82      kristaps   93: static void              print_ctag(struct html *, enum htmltag);
1.88      kristaps   94: static int               print_encode(struct html *, const char *, int);
                     95: static void              print_metaf(struct html *, enum roffdeco);
1.82      kristaps   96:
                     97:
1.29      kristaps   98: void *
1.43      kristaps   99: html_alloc(char *outopts)
1.10      kristaps  100: {
1.30      kristaps  101:        struct html     *h;
1.63      kristaps  102:        const char      *toks[4];
                    103:        char            *v;
1.43      kristaps  104:
                    105:        toks[0] = "style";
1.53      kristaps  106:        toks[1] = "man";
1.54      kristaps  107:        toks[2] = "includes";
                    108:        toks[3] = NULL;
1.30      kristaps  109:
1.72      kristaps  110:        h = calloc(1, sizeof(struct html));
                    111:        if (NULL == h) {
1.75      kristaps  112:                perror(NULL);
1.72      kristaps  113:                exit(EXIT_FAILURE);
                    114:        }
1.10      kristaps  115:
1.66      kristaps  116:        h->tags.head = NULL;
                    117:        h->ords.head = NULL;
1.72      kristaps  118:        h->symtab = chars_init(CHARS_HTML);
1.41      kristaps  119:
1.47      kristaps  120:        while (outopts && *outopts)
1.63      kristaps  121:                switch (getsubopt(&outopts, UNCONST(toks), &v)) {
1.43      kristaps  122:                case (0):
                    123:                        h->style = v;
                    124:                        break;
                    125:                case (1):
1.53      kristaps  126:                        h->base_man = v;
1.43      kristaps  127:                        break;
1.54      kristaps  128:                case (2):
                    129:                        h->base_includes = v;
                    130:                        break;
1.43      kristaps  131:                default:
                    132:                        break;
                    133:                }
                    134:
1.30      kristaps  135:        return(h);
1.29      kristaps  136: }
1.10      kristaps  137:
1.33      kristaps  138:
1.29      kristaps  139: void
                    140: html_free(void *p)
                    141: {
1.30      kristaps  142:        struct tag      *tag;
1.37      kristaps  143:        struct ord      *ord;
1.30      kristaps  144:        struct html     *h;
                    145:
                    146:        h = (struct html *)p;
1.10      kristaps  147:
1.66      kristaps  148:        while ((ord = h->ords.head) != NULL) {
                    149:                h->ords.head = ord->next;
1.37      kristaps  150:                free(ord);
                    151:        }
                    152:
1.66      kristaps  153:        while ((tag = h->tags.head) != NULL) {
                    154:                h->tags.head = tag->next;
1.30      kristaps  155:                free(tag);
                    156:        }
1.36      kristaps  157:
                    158:        if (h->symtab)
                    159:                chars_free(h->symtab);
1.53      kristaps  160:
1.30      kristaps  161:        free(h);
1.10      kristaps  162: }
1.2       kristaps  163:
1.33      kristaps  164:
1.51      kristaps  165: void
1.29      kristaps  166: print_gen_head(struct html *h)
                    167: {
1.41      kristaps  168:        struct htmlpair  tag[4];
                    169:
                    170:        tag[0].key = ATTR_HTTPEQUIV;
                    171:        tag[0].val = "Content-Type";
                    172:        tag[1].key = ATTR_CONTENT;
                    173:        tag[1].val = "text/html; charset=utf-8";
                    174:        print_otag(h, TAG_META, 2, tag);
                    175:
                    176:        tag[0].key = ATTR_NAME;
                    177:        tag[0].val = "resource-type";
                    178:        tag[1].key = ATTR_CONTENT;
                    179:        tag[1].val = "document";
                    180:        print_otag(h, TAG_META, 2, tag);
                    181:
                    182:        if (h->style) {
                    183:                tag[0].key = ATTR_REL;
                    184:                tag[0].val = "stylesheet";
                    185:                tag[1].key = ATTR_HREF;
                    186:                tag[1].val = h->style;
                    187:                tag[2].key = ATTR_TYPE;
                    188:                tag[2].val = "text/css";
                    189:                tag[3].key = ATTR_MEDIA;
                    190:                tag[3].val = "all";
                    191:                print_otag(h, TAG_LINK, 4, tag);
                    192:        }
1.4       kristaps  193: }
                    194:
1.33      kristaps  195:
1.29      kristaps  196: static void
1.83      kristaps  197: print_spec(struct html *h, const char *p, size_t len)
1.32      kristaps  198: {
                    199:        const char      *rhs;
                    200:        size_t           sz;
                    201:
1.83      kristaps  202:        rhs = chars_a2ascii(h->symtab, p, len, &sz);
1.32      kristaps  203:
                    204:        if (NULL == rhs)
                    205:                return;
1.76      kristaps  206:        fwrite(rhs, 1, sz, stdout);
1.32      kristaps  207: }
                    208:
1.33      kristaps  209:
1.32      kristaps  210: static void
1.83      kristaps  211: print_res(struct html *h, const char *p, size_t len)
1.32      kristaps  212: {
                    213:        const char      *rhs;
                    214:        size_t           sz;
                    215:
1.83      kristaps  216:        rhs = chars_a2res(h->symtab, p, len, &sz);
1.32      kristaps  217:
                    218:        if (NULL == rhs)
                    219:                return;
1.76      kristaps  220:        fwrite(rhs, 1, sz, stdout);
1.32      kristaps  221: }
                    222:
1.33      kristaps  223:
1.88      kristaps  224: static void
                    225: print_metaf(struct html *h, enum roffdeco deco)
                    226: {
                    227:        const char      *class;
                    228:        struct htmlpair  tag;
                    229:
                    230:        switch (deco) {
                    231:        case (DECO_BOLD):
                    232:                class = "bold";
                    233:                break;
                    234:        case (DECO_ITALIC):
                    235:                class = "italic";
                    236:                break;
                    237:        case (DECO_ROMAN):
                    238:                class = "roman";
                    239:                break;
                    240:        default:
                    241:                abort();
                    242:                /* NOTREACHED */
                    243:        }
                    244:
                    245:        if (h->metaf) {
                    246:                assert(h->tags.head);
                    247:                assert(h->metaf == h->tags.head);
                    248:                print_tagq(h, h->metaf);
                    249:        }
1.89    ! kristaps  250:
1.88      kristaps  251:        PAIR_CLASS_INIT(&tag, class);
                    252:        h->metaf = print_otag(h, TAG_SPAN, 1, &tag);
                    253: }
                    254:
                    255:
1.85      kristaps  256: static int
1.88      kristaps  257: print_encode(struct html *h, const char *p, int norecurse)
1.29      kristaps  258: {
1.77      kristaps  259:        size_t           sz;
1.85      kristaps  260:        int              len, nospace;
1.82      kristaps  261:        const char      *seq;
                    262:        enum roffdeco    deco;
1.14      kristaps  263:
1.85      kristaps  264:        nospace = 0;
                    265:
1.32      kristaps  266:        for (; *p; p++) {
1.77      kristaps  267:                sz = strcspn(p, "\\<>&");
                    268:
                    269:                fwrite(p, 1, sz, stdout);
1.80      kristaps  270:                p += /* LINTED */
                    271:                        sz;
1.77      kristaps  272:
1.82      kristaps  273:                if ('<' == *p) {
                    274:                        printf("&lt;");
                    275:                        continue;
                    276:                } else if ('>' == *p) {
                    277:                        printf("&gt;");
                    278:                        continue;
                    279:                } else if ('&' == *p) {
                    280:                        printf("&amp;");
1.34      kristaps  281:                        continue;
1.77      kristaps  282:                } else if ('\0' == *p)
                    283:                        break;
                    284:
1.82      kristaps  285:                seq = ++p;
                    286:                len = a2roffdeco(&deco, &seq, &sz);
                    287:
                    288:                switch (deco) {
                    289:                case (DECO_RESERVED):
                    290:                        print_res(h, seq, sz);
                    291:                        break;
                    292:                case (DECO_SPECIAL):
                    293:                        print_spec(h, seq, sz);
                    294:                        break;
1.88      kristaps  295:                case (DECO_BOLD):
                    296:                        /* FALLTHROUGH */
                    297:                case (DECO_ITALIC):
                    298:                        /* FALLTHROUGH */
                    299:                case (DECO_ROMAN):
                    300:                        if (norecurse)
                    301:                                break;
                    302:                        print_metaf(h, deco);
                    303:                        break;
1.82      kristaps  304:                default:
                    305:                        break;
                    306:                }
                    307:
                    308:                p += len - 1;
1.84      kristaps  309:
                    310:                if (DECO_NOSPACE == deco && '\0' == *(p + 1))
1.85      kristaps  311:                        nospace = 1;
1.32      kristaps  312:        }
1.85      kristaps  313:
                    314:        return(nospace);
1.14      kristaps  315: }
                    316:
                    317:
1.51      kristaps  318: struct tag *
1.29      kristaps  319: print_otag(struct html *h, enum htmltag tag,
                    320:                int sz, const struct htmlpair *p)
1.14      kristaps  321: {
1.29      kristaps  322:        int              i;
1.30      kristaps  323:        struct tag      *t;
                    324:
                    325:        if ( ! (HTML_NOSTACK & htmltags[tag].flags)) {
1.72      kristaps  326:                t = malloc(sizeof(struct tag));
                    327:                if (NULL == t) {
1.75      kristaps  328:                        perror(NULL);
1.72      kristaps  329:                        exit(EXIT_FAILURE);
                    330:                }
1.30      kristaps  331:                t->tag = tag;
1.66      kristaps  332:                t->next = h->tags.head;
                    333:                h->tags.head = t;
1.30      kristaps  334:        } else
                    335:                t = NULL;
1.29      kristaps  336:
                    337:        if ( ! (HTML_NOSPACE & h->flags))
1.30      kristaps  338:                if ( ! (HTML_CLRLINE & htmltags[tag].flags))
1.78      kristaps  339:                        putchar(' ');
1.29      kristaps  340:
                    341:        printf("<%s", htmltags[tag].name);
                    342:        for (i = 0; i < sz; i++) {
                    343:                printf(" %s=\"", htmlattrs[p[i].key]);
                    344:                assert(p->val);
1.88      kristaps  345:                (void)print_encode(h, p[i].val, 1);
1.78      kristaps  346:                putchar('\"');
1.29      kristaps  347:        }
1.78      kristaps  348:        putchar('>');
1.14      kristaps  349:
1.29      kristaps  350:        h->flags |= HTML_NOSPACE;
1.30      kristaps  351:        return(t);
1.14      kristaps  352: }
                    353:
                    354:
                    355: /* ARGSUSED */
1.29      kristaps  356: static void
                    357: print_ctag(struct html *h, enum htmltag tag)
1.14      kristaps  358: {
                    359:
1.29      kristaps  360:        printf("</%s>", htmltags[tag].name);
1.71      kristaps  361:        if (HTML_CLRLINE & htmltags[tag].flags) {
1.29      kristaps  362:                h->flags |= HTML_NOSPACE;
1.78      kristaps  363:                putchar('\n');
1.87      kristaps  364:        }
1.14      kristaps  365: }
                    366:
                    367:
1.29      kristaps  368: /* ARGSUSED */
1.51      kristaps  369: void
1.29      kristaps  370: print_gen_doctype(struct html *h)
1.1       kristaps  371: {
1.29      kristaps  372:
1.46      kristaps  373:        printf("<!DOCTYPE HTML PUBLIC \"%s\" \"%s\">", DOCTYPE, DTD);
1.1       kristaps  374: }
                    375:
                    376:
1.51      kristaps  377: void
1.29      kristaps  378: print_text(struct html *h, const char *p)
1.1       kristaps  379: {
                    380:
1.29      kristaps  381:        if (*p && 0 == *(p + 1))
                    382:                switch (*p) {
                    383:                case('.'):
                    384:                        /* FALLTHROUGH */
                    385:                case(','):
                    386:                        /* FALLTHROUGH */
                    387:                case(';'):
                    388:                        /* FALLTHROUGH */
                    389:                case(':'):
                    390:                        /* FALLTHROUGH */
                    391:                case('?'):
                    392:                        /* FALLTHROUGH */
                    393:                case('!'):
                    394:                        /* FALLTHROUGH */
                    395:                case(')'):
                    396:                        /* FALLTHROUGH */
                    397:                case(']'):
                    398:                        /* FALLTHROUGH */
                    399:                case('}'):
1.52      kristaps  400:                        if ( ! (HTML_IGNDELIM & h->flags))
                    401:                                h->flags |= HTML_NOSPACE;
1.30      kristaps  402:                        break;
1.29      kristaps  403:                default:
                    404:                        break;
                    405:                }
1.1       kristaps  406:
1.29      kristaps  407:        if ( ! (h->flags & HTML_NOSPACE))
1.78      kristaps  408:                putchar(' ');
1.30      kristaps  409:
1.86      kristaps  410:        assert(p);
1.88      kristaps  411:        if ( ! print_encode(h, p, 0))
1.86      kristaps  412:                h->flags &= ~HTML_NOSPACE;
1.8       kristaps  413:
1.29      kristaps  414:        if (*p && 0 == *(p + 1))
                    415:                switch (*p) {
                    416:                case('('):
                    417:                        /* FALLTHROUGH */
                    418:                case('['):
                    419:                        /* FALLTHROUGH */
                    420:                case('{'):
                    421:                        h->flags |= HTML_NOSPACE;
1.30      kristaps  422:                        break;
1.29      kristaps  423:                default:
                    424:                        break;
                    425:                }
1.1       kristaps  426: }
1.30      kristaps  427:
                    428:
1.51      kristaps  429: void
1.30      kristaps  430: print_tagq(struct html *h, const struct tag *until)
                    431: {
                    432:        struct tag      *tag;
                    433:
1.66      kristaps  434:        while ((tag = h->tags.head) != NULL) {
1.89    ! kristaps  435:                if (tag == h->metaf)
        !           436:                        h->metaf = NULL;
1.30      kristaps  437:                print_ctag(h, tag->tag);
1.66      kristaps  438:                h->tags.head = tag->next;
1.30      kristaps  439:                free(tag);
                    440:                if (until && tag == until)
                    441:                        return;
                    442:        }
                    443: }
                    444:
                    445:
1.51      kristaps  446: void
1.30      kristaps  447: print_stagq(struct html *h, const struct tag *suntil)
                    448: {
                    449:        struct tag      *tag;
                    450:
1.66      kristaps  451:        while ((tag = h->tags.head) != NULL) {
1.30      kristaps  452:                if (suntil && tag == suntil)
                    453:                        return;
1.89    ! kristaps  454:                if (tag == h->metaf)
        !           455:                        h->metaf = NULL;
1.30      kristaps  456:                print_ctag(h, tag->tag);
1.66      kristaps  457:                h->tags.head = tag->next;
1.30      kristaps  458:                free(tag);
                    459:        }
                    460: }
1.55      kristaps  461:
                    462:
                    463: void
                    464: bufinit(struct html *h)
                    465: {
                    466:
                    467:        h->buf[0] = '\0';
                    468:        h->buflen = 0;
                    469: }
                    470:
                    471:
                    472: void
1.58      kristaps  473: bufcat_style(struct html *h, const char *key, const char *val)
                    474: {
                    475:
                    476:        bufcat(h, key);
                    477:        bufncat(h, ":", 1);
                    478:        bufcat(h, val);
                    479:        bufncat(h, ";", 1);
                    480: }
                    481:
                    482:
                    483: void
1.55      kristaps  484: bufcat(struct html *h, const char *p)
                    485: {
                    486:
                    487:        bufncat(h, p, strlen(p));
                    488: }
                    489:
                    490:
                    491: void
                    492: buffmt(struct html *h, const char *fmt, ...)
                    493: {
                    494:        va_list          ap;
                    495:
                    496:        va_start(ap, fmt);
1.56      kristaps  497:        (void)vsnprintf(h->buf + (int)h->buflen,
1.55      kristaps  498:                        BUFSIZ - h->buflen - 1, fmt, ap);
                    499:        va_end(ap);
                    500:        h->buflen = strlen(h->buf);
                    501: }
                    502:
                    503:
                    504: void
                    505: bufncat(struct html *h, const char *p, size_t sz)
                    506: {
                    507:
                    508:        if (h->buflen + sz > BUFSIZ - 1)
                    509:                sz = BUFSIZ - 1 - h->buflen;
                    510:
                    511:        (void)strncat(h->buf, p, sz);
                    512:        h->buflen += sz;
                    513: }
                    514:
                    515:
                    516: void
                    517: buffmt_includes(struct html *h, const char *name)
                    518: {
                    519:        const char      *p, *pp;
                    520:
                    521:        pp = h->base_includes;
1.61      kristaps  522:
                    523:        while (NULL != (p = strchr(pp, '%'))) {
1.56      kristaps  524:                bufncat(h, pp, (size_t)(p - pp));
1.55      kristaps  525:                switch (*(p + 1)) {
                    526:                case('I'):
                    527:                        bufcat(h, name);
                    528:                        break;
                    529:                default:
                    530:                        bufncat(h, p, 2);
                    531:                        break;
                    532:                }
                    533:                pp = p + 2;
                    534:        }
                    535:        if (pp)
                    536:                bufcat(h, pp);
                    537: }
                    538:
                    539:
                    540: void
                    541: buffmt_man(struct html *h,
                    542:                const char *name, const char *sec)
                    543: {
                    544:        const char      *p, *pp;
                    545:
                    546:        pp = h->base_man;
1.61      kristaps  547:
                    548:        /* LINTED */
                    549:        while (NULL != (p = strchr(pp, '%'))) {
1.56      kristaps  550:                bufncat(h, pp, (size_t)(p - pp));
1.55      kristaps  551:                switch (*(p + 1)) {
                    552:                case('S'):
1.58      kristaps  553:                        bufcat(h, sec ? sec : "1");
1.55      kristaps  554:                        break;
                    555:                case('N'):
1.58      kristaps  556:                        buffmt(h, name);
1.55      kristaps  557:                        break;
                    558:                default:
                    559:                        bufncat(h, p, 2);
                    560:                        break;
                    561:                }
                    562:                pp = p + 2;
                    563:        }
                    564:        if (pp)
                    565:                bufcat(h, pp);
                    566: }
1.58      kristaps  567:
                    568:
                    569: void
                    570: bufcat_su(struct html *h, const char *p, const struct roffsu *su)
                    571: {
1.62      kristaps  572:        double           v;
1.63      kristaps  573:        const char      *u;
1.58      kristaps  574:
                    575:        v = su->scale;
                    576:
                    577:        switch (su->unit) {
                    578:        case (SCALE_CM):
                    579:                u = "cm";
                    580:                break;
                    581:        case (SCALE_IN):
                    582:                u = "in";
                    583:                break;
                    584:        case (SCALE_PC):
                    585:                u = "pc";
                    586:                break;
                    587:        case (SCALE_PT):
                    588:                u = "pt";
                    589:                break;
1.59      kristaps  590:        case (SCALE_EM):
                    591:                u = "em";
                    592:                break;
1.58      kristaps  593:        case (SCALE_MM):
                    594:                if (0 == (v /= 100))
                    595:                        v = 1;
                    596:                u = "em";
                    597:                break;
1.59      kristaps  598:        case (SCALE_EN):
                    599:                u = "ex";
                    600:                break;
                    601:        case (SCALE_BU):
                    602:                u = "ex";
                    603:                break;
1.58      kristaps  604:        case (SCALE_VS):
                    605:                u = "em";
                    606:                break;
                    607:        default:
                    608:                u = "ex";
                    609:                break;
                    610:        }
                    611:
1.62      kristaps  612:        if (su->pt)
                    613:                buffmt(h, "%s: %f%s;", p, v, u);
                    614:        else
                    615:                /* LINTED */
                    616:                buffmt(h, "%s: %d%s;", p, (int)v, u);
1.58      kristaps  617: }
1.65      kristaps  618:
1.68      kristaps  619:
                    620: void
1.70      kristaps  621: html_idcat(char *dst, const char *src, int sz)
1.68      kristaps  622: {
1.70      kristaps  623:        int              ssz;
1.68      kristaps  624:
                    625:        assert(sz);
                    626:
                    627:        /* Cf. <http://www.w3.org/TR/html4/types.html#h-6.2>. */
                    628:
1.70      kristaps  629:        for ( ; *dst != '\0' && sz; dst++, sz--)
1.68      kristaps  630:                /* Jump to end. */ ;
                    631:
1.70      kristaps  632:        assert(sz > 2);
1.68      kristaps  633:
1.70      kristaps  634:        /* We can't start with a number (bah). */
1.68      kristaps  635:
1.70      kristaps  636:        *dst++ = 'x';
1.68      kristaps  637:        *dst = '\0';
1.70      kristaps  638:        sz--;
                    639:
                    640:        for ( ; *src != '\0' && sz > 1; src++) {
1.73      kristaps  641:                ssz = snprintf(dst, (size_t)sz, "%.2x", *src);
1.70      kristaps  642:                sz -= ssz;
                    643:                dst += ssz;
                    644:        }
1.68      kristaps  645: }

CVSweb