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

Diff for /mandoc/html.c between version 1.12 and 1.148

version 1.12, 2008/12/06 19:41:41 version 1.148, 2011/07/04 09:42:38
Line 1 
Line 1 
 /* $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>   * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
    * Copyright (c) 2011 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>  #ifdef HAVE_CONFIG_H
 #include <sys/stat.h>  #include "config.h"
   #endif
   
   #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 "libmandoc.h"
 #include "ml.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 */
   };
   
 struct  htmlnode {  static  const char      *const htmlattrs[ATTR_MAX] = {
         int              tok;          "http-equiv", /* ATTR_HTTPEQUIV */
         enum md_ns       ns;          "content", /* ATTR_CONTENT */
         int              argc[ROFF_MAXLINEARG];          "name", /* ATTR_NAME */
         char            *argv[ROFF_MAXLINEARG];          "rel", /* ATTR_REL */
         struct htmlnode *parent;          "href", /* ATTR_HREF */
           "type", /* ATTR_TYPE */
           "media", /* ATTR_MEDIA */
           "class", /* ATTR_CLASS */
           "style", /* ATTR_STYLE */
           "width", /* ATTR_WIDTH */
           "id", /* ATTR_ID */
           "summary", /* ATTR_SUMMARY */
           "align", /* ATTR_ALIGN */
           "colspan", /* ATTR_COLSPAN */
 };  };
   
   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_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 void *
   ml_alloc(char *outopts, enum htmltype type)
   {
           struct html     *h;
           const char      *toks[4];
           char            *v;
   
 static  int             html_alloc(void **);          toks[0] = "style";
 static  void            html_free(void *);          toks[1] = "man";
 static  ssize_t         html_endtag(struct md_mbuf *, void *,          toks[2] = "includes";
                                 const struct md_args *,          toks[3] = NULL;
                                 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 *);  
   
           h = mandoc_calloc(1, sizeof(struct html));
   
 /* ARGSUSED */          h->type = type;
 static int          h->tags.head = NULL;
 html_It_headtagname(struct md_mbuf *mbuf, struct htmlq *q,          h->symtab = mchars_alloc();
                 const int *argc, const char **argv, size_t *res)  
 {  
         struct htmlnode *n;  
         int              i;  
   
         for (n = q->last; n; n = n->parent)          while (outopts && *outopts)
                 if (n->tok == ROFF_Bl)                  switch (getsubopt(&outopts, UNCONST(toks), &v)) {
                   case (0):
                           h->style = v;
                         break;                          break;
                   case (1):
         assert(n);                          h->base_man = v;
         for (i = 0; ROFF_ARGMAX != n->argc[i] &&                          break;
                         i < ROFF_MAXLINEARG; i++) {                  case (2):
                 switch (n->argc[i]) {                          h->base_includes = v;
                 case (ROFF_Tag):                          break;
                         /* FALLTHROUGH */  
                 case (ROFF_Column):  
                         return(ml_nputs(mbuf, "td", 2, res));  
                 default:                  default:
                         break;                          break;
                 }                  }
         }  
   
         assert(i != ROFF_MAXLINEARG);          return(h);
         abort();  }
         /* NOTREACHED */  
   
         return(1);  void *
   html_alloc(char *outopts)
   {
   
           return(ml_alloc(outopts, HTML_HTML_4_01_STRICT));
 }  }
   
   
 /* ARGSUSED */  void *
 static int  xhtml_alloc(char *outopts)
 html_It_bodytagname(struct md_mbuf *mbuf, struct htmlq *q,  
                 const int *argc, const char **argv, size_t *res)  
 {  {
         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);  
         for (i = 0; ROFF_ARGMAX != n->argc[i] &&  void
                         i < ROFF_MAXLINEARG; i++) {  html_free(void *p)
                 switch (n->argc[i]) {  {
                 case (ROFF_Enum):          struct tag      *tag;
                         /* FALLTHROUGH */          struct html     *h;
                 case (ROFF_Bullet):  
                         /* FALLTHROUGH */          h = (struct html *)p;
                 case (ROFF_Dash):  
                         /* FALLTHROUGH */          while ((tag = h->tags.head) != NULL) {
                 case (ROFF_Hyphen):                  h->tags.head = tag->next;
                         /* FALLTHROUGH */                  free(tag);
                 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;  
                 }  
         }          }
   
           if (h->symtab)
                   mchars_free(h->symtab);
   
         assert(i != ROFF_MAXLINEARG);          free(h);
         abort();  }
         /* NOTREACHED */  
   
         return(1);  
   void
   print_gen_head(struct html *h)
   {
           struct htmlpair  tag[4];
   
           tag[0].key = ATTR_HTTPEQUIV;
           tag[0].val = "Content-Type";
           tag[1].key = ATTR_CONTENT;
           tag[1].val = "text/html; charset=utf-8";
           print_otag(h, TAG_META, 2, tag);
   
           tag[0].key = ATTR_NAME;
           tag[0].val = "resource-type";
           tag[1].key = ATTR_CONTENT;
           tag[1].val = "document";
           print_otag(h, TAG_META, 2, tag);
   
           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)
   {
           enum htmlfont    font;
   
 /* ARGSUSED */          switch (deco) {
 static int          case (ESCAPE_FONTPREV):
 html_Bl_bodytagname(struct md_mbuf *mbuf, struct htmlq *q,                  font = h->metal;
                 const int *argc, const char **argv, size_t *res)                  break;
           case (ESCAPE_FONTITALIC):
                   font = HTMLFONT_ITALIC;
                   break;
           case (ESCAPE_FONTBOLD):
                   font = HTMLFONT_BOLD;
                   break;
           case (ESCAPE_FONT):
                   /* FALLTHROUGH */
           case (ESCAPE_FONTROMAN):
                   font = HTMLFONT_NONE;
                   break;
           default:
                   abort();
                   /* NOTREACHED */
           }
   
           if (h->metaf) {
                   print_tagq(h, h->metaf);
                   h->metaf = NULL;
           }
   
           h->metal = h->metac;
           h->metac = font;
   
           if (HTMLFONT_NONE != font)
                   h->metaf = HTMLFONT_BOLD == font ?
                           print_otag(h, TAG_B, 0, NULL) :
                           print_otag(h, TAG_I, 0, NULL);
   }
   
   int
   html_strlen(const char *cp)
 {  {
         int              i;          int              ssz, sz;
           const char      *seq, *p;
   
         for (i = 0; ROFF_ARGMAX != argc[i]          /*
                         && i < ROFF_MAXLINEARG; i++) {           * Account for escaped sequences within string length
                 switch (argc[i]) {           * calculations.  This follows the logic in term_strlen() as we
                 case (ROFF_Enum):           * must calculate the width of produced strings.
                         return(ml_nputs(mbuf, "ol", 2, res));           * Assume that characters are always width of "1".  This is
                 case (ROFF_Bullet):           * hacky, but it gets the job done for approximation of widths.
            */
   
           sz = 0;
           while (NULL != (p = strchr(cp, '\\'))) {
                   sz += (int)(p - cp);
                   ++cp;
                   switch (mandoc_escape(&cp, &seq, &ssz)) {
                   case (ESCAPE_ERROR):
                           return(sz);
                   case (ESCAPE_UNICODE):
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case (ROFF_Dash):                  case (ESCAPE_NUMBERED):
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case (ROFF_Hyphen):                  case (ESCAPE_SPECIAL):
                         /* FALLTHROUGH */                          sz++;
                 case (ROFF_Item):                          break;
                         /* FALLTHROUGH */  
                 case (ROFF_Diag):  
                         /* FALLTHROUGH */  
                 case (ROFF_Hang):  
                         /* FALLTHROUGH */  
                 case (ROFF_Ohang):  
                         /* FALLTHROUGH */  
                 case (ROFF_Inset):  
                         return(ml_nputs(mbuf, "ul", 2, res));  
                 case (ROFF_Tag):  
                         /* FALLTHROUGH */  
                 case (ROFF_Column):  
                         return(ml_nputs(mbuf, "table", 5, res));  
                 default:                  default:
                         break;                          break;
                 }                  }
         }          }
   
         assert(i != ROFF_MAXLINEARG);          assert(sz >= 0);
         abort();          return(sz + strlen(cp));
         /* NOTREACHED */  
 }  }
   
   
 /* ARGSUSED */  
 static int  static int
 html_It_blocktagname(struct md_mbuf *mbuf, struct htmlq *q,  print_encode(struct html *h, const char *p, int norecurse)
                 const int *argc, const char **argv, size_t *res)  
 {  {
         struct htmlnode *n;          size_t           sz;
         int              i;          int              c, len, nospace;
           const char      *seq;
           enum mandoc_esc  esc;
           static const char rejs[6] = { '\\', '<', '>', '&', ASCII_HYPH, '\0' };
   
         for (n = q->last; n; n = n->parent)          nospace = 0;
                 if (n->tok == ROFF_Bl)  
           while ('\0' != *p) {
                   sz = strcspn(p, rejs);
   
                   fwrite(p, 1, sz, stdout);
                   p += (int)sz;
   
                   if ('\0' == *p)
                         break;                          break;
   
         assert(n);                  switch (*p++) {
         for (i = 0; ROFF_ARGMAX != n->argc[i] &&                  case ('<'):
                         i < ROFF_MAXLINEARG; i++) {                          printf("&lt;");
                 switch (n->argc[i]) {                          continue;
                 case (ROFF_Enum):                  case ('>'):
                           printf("&gt;");
                           continue;
                   case ('&'):
                           printf("&amp;");
                           continue;
                   case (ASCII_HYPH):
                           putchar('-');
                           continue;
                   default:
                           break;
                   }
   
                   esc = mandoc_escape(&p, &seq, &len);
                   if (ESCAPE_ERROR == esc)
                           break;
   
                   switch (esc) {
                   case (ESCAPE_UNICODE):
                           /* Skip passed "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)
                                   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)
                                   putchar((int)*seq);
                           break;
                   case (ESCAPE_FONT):
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case (ROFF_Bullet):                  case (ESCAPE_FONTPREV):
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case (ROFF_Dash):                  case (ESCAPE_FONTBOLD):
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case (ROFF_Hyphen):                  case (ESCAPE_FONTITALIC):
                         /* FALLTHROUGH */                          /* FALLTHROUGH */
                 case (ROFF_Item):                  case (ESCAPE_FONTROMAN):
                         /* FALLTHROUGH */                          if (norecurse)
                 case (ROFF_Diag):                                  break;
                         /* FALLTHROUGH */                          print_metaf(h, esc);
                 case (ROFF_Hang):                          break;
                         /* FALLTHROUGH */                  case (ESCAPE_NOSPACE):
                 case (ROFF_Ohang):                          if ('\0' == *p)
                         /* FALLTHROUGH */                                  nospace = 1;
                 case (ROFF_Inset):                          break;
                         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;
                 }                  }
         }          }
   
         assert(i != ROFF_MAXLINEARG);          return(nospace);
         abort();  
         /* NOTREACHED */  
 }  }
   
   
 static int  static void
 html_loadcss(struct md_mbuf *mbuf, const char *css)  print_attr(struct html *h, const char *key, const char *val)
 {  {
         size_t           res, bufsz;          printf(" %s=\"", key);
         char            *buf;          (void)print_encode(h, val, 1);
         struct stat      st;          putchar('\"');
         int              fd, c;  }
         ssize_t          ssz;  
   
         c = 0;  
         res = 0;  
         buf = NULL;  
   
         if (-1 == (fd = open(css, O_RDONLY, 0))) {  struct tag *
                 warn("%s", css);  print_otag(struct html *h, enum htmltag tag,
                 return(0);                  int sz, const struct htmlpair *p)
         }  {
           int              i;
         if (-1 == fstat(fd, &st)) {          struct tag      *t;
                 warn("%s", css);  
                 goto out;  
         }  
   
         bufsz = MAX(st.st_blksize, BUFSIZ);          /* Push this tags onto the stack of open scopes. */
         if (NULL == (buf = malloc(bufsz))) {  
                 warn("malloc");  
                 goto out;  
         }  
   
         for (;;) {          if ( ! (HTML_NOSTACK & htmltags[tag].flags)) {
                 if (-1 == (ssz = read(fd, buf, bufsz))) {                  t = mandoc_malloc(sizeof(struct tag));
                         warn("%s", css);                  t->tag = tag;
                         goto out;                  t->next = h->tags.head;
                 } else if (0 == ssz)                  h->tags.head = t;
                         break;          } else
                 if ( ! ml_nputs(mbuf, buf, (size_t)ssz, &res))                  t = NULL;
                         goto out;  
         }  
   
         c = 1;          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("&#160;");
                   }
   
 out:          if ( ! (h->flags & HTML_NONOSPACE))
         if (-1 == close(fd)) {                  h->flags &= ~HTML_NOSPACE;
                 warn("%s", css);          else
                 c = 0;                  h->flags |= HTML_NOSPACE;
         }  
   
         if (buf)          /* Print out the tag name and attributes. */
                 free(buf);  
   
         return(c);          printf("<%s", htmltags[tag].name);
 }          for (i = 0; i < sz; i++)
                   print_attr(h, htmlattrs[p[i].key], p[i].val);
   
           /* Add non-overridable attributes. */
   
 /* ARGSUSED */          if (TAG_HTML == tag && HTML_XHTML_1_0_STRICT == h->type) {
 static int                  print_attr(h, "xmlns", "http://www.w3.org/1999/xhtml");
 html_begin(struct md_mbuf *mbuf, const struct md_args *args,                  print_attr(h, "xml:lang", "en");
                 const struct tm *tm, const char *os,                  print_attr(h, "lang", "en");
                 const char *title, const char *section,          }
                 const char *vol)  
 {  
         const char      *preamble, *css, *trail;  
         char             buf[512];  
         size_t           res;  
   
         preamble =          /* Accommodate for XML "well-formed" singleton escaping. */
         "<!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 =          if (HTML_AUTOCLOSE & htmltags[tag].flags)
         "    <link rel=\"stylesheet\" type=\"text/css\"\n"                  switch (h->type) {
         "         href=\"%s\">\n";                  case (HTML_XHTML_1_0_STRICT):
         trail =                          putchar('/');
         "</head>\n"                          break;
         "<body>\n"                  default:
         "<div class=\"mdoc\">";                          break;
                   }
   
         res = 0;          putchar('>');
   
         (void)snprintf(buf, sizeof(buf) - 1,          h->flags |= HTML_NOSPACE;
                         preamble, title, section);  
   
         if ( ! ml_puts(mbuf, buf, &res))          if ((HTML_AUTOCLOSE | HTML_CLRLINE) & htmltags[tag].flags)
                 return(0);                  putchar('\n');
   
         assert(args->params.html.css);          return(t);
         if (HTML_CSS_EMBED & args->params.html.flags) {  
                 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))  
                 return(0);  
   
         return(1);  
 }  }
   
   
 /* ARGSUSED */  static void
 static int  print_ctag(struct html *h, enum htmltag tag)
 html_end(struct md_mbuf *mbuf, const struct md_args *args)  
 {  {
   
         return(ml_puts(mbuf, "</div></body>\n</html>", NULL));          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_bodytagname(struct md_mbuf *mbuf,  
                 const struct md_args *args, int tok, struct htmlq *q,  
                 const int *argc, const char **argv, size_t *res)  
 {  {
           const char      *doctype;
           const char      *dtd;
           const char      *name;
   
         switch (tok) {          switch (h->type) {
         case (ROFF_Bl):          case (HTML_HTML_4_01_STRICT):
                 return(html_Bl_bodytagname(mbuf, q, argc, argv, res));                  name = "HTML";
         case (ROFF_Fo):                  doctype = "-//W3C//DTD HTML 4.01//EN";
                 return(ml_nputs(mbuf, "span", 4, res));                  dtd = "http://www.w3.org/TR/html4/strict.dtd";
         case (ROFF_It):                  break;
                 return(html_It_bodytagname(mbuf, q, argc, argv, res));  
         case (ROFF_Oo):  
                 return(ml_nputs(mbuf, "span", 4, res));  
         default:          default:
                   puts("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
                   name = "html";
                   doctype = "-//W3C//DTD XHTML 1.0 Strict//EN";
                   dtd = "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";
                 break;                  break;
         }          }
   
         return(ml_puts(mbuf, "div", res));          printf("<!DOCTYPE %s PUBLIC \"%s\" \"%s\">\n",
                           name, doctype, dtd);
 }  }
   
   void
 /* ARGSUSED */  print_text(struct html *h, const char *word)
 static int  
 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)  
 {  {
   
         switch (tok) {          if ( ! (HTML_NOSPACE & h->flags)) {
         case (ROFF_It):                  /* Manage keeps! */
                 return(html_It_headtagname(mbuf, q, argc, argv, res));                  if ( ! (HTML_KEEP & h->flags)) {
         case (ROFF_Fo):                          if (HTML_PREKEEP & h->flags)
                 return(ml_nputs(mbuf, "span", 4, res));                                  h->flags |= HTML_KEEP;
         case (ROFF_Oo):                          putchar(' ');
                 return(ml_nputs(mbuf, "span", 4, res));                  } else
         case (ROFF_Sh):                          printf("&#160;");
                 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));          assert(NULL == h->metaf);
 }          if (HTMLFONT_NONE != h->metac)
                   h->metaf = HTMLFONT_BOLD == h->metac ?
                           print_otag(h, TAG_B, 0, NULL) :
                           print_otag(h, TAG_I, 0, NULL);
   
           assert(word);
           if ( ! print_encode(h, word, 0))
                   if ( ! (h->flags & HTML_NONOSPACE))
                           h->flags &= ~HTML_NOSPACE;
   
 /* ARGSUSED */          if (h->metaf) {
 static int                  print_tagq(h, h->metaf);
 html_blocktagname(struct md_mbuf *mbuf, const struct md_args *args,                  h->metaf = NULL;
                 int tok, struct htmlq *q, const int *argc,  
                 const char **argv, size_t *res)  
 {  
   
         switch (tok) {  
         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));          h->flags &= ~HTML_IGNDELIM;
 }  }
   
   
 /* ARGSUSED */  void
 static int  print_tagq(struct html *h, const struct tag *until)
 html_printargs(struct md_mbuf *mbuf, int tok, const char *ns,  
                 const int *argc, const char **argv, size_t *res)  
 {  {
           struct tag      *tag;
   
         if ( ! ml_puts(mbuf, " class=\"", res))          while ((tag = h->tags.head) != NULL) {
                 return(0);                  /*
         if ( ! ml_puts(mbuf, ns, res))                   * Remember to close out and nullify the current
                 return(0);                   * meta-font and table, if applicable.
         if ( ! ml_puts(mbuf, "-", res))                   */
                 return(0);                  if (tag == h->metaf)
         if ( ! ml_puts(mbuf, toknames[tok], res))                          h->metaf = NULL;
                 return(0);                  if (tag == h->tblt)
         return(ml_puts(mbuf, "\"", res));                          h->tblt = NULL;
                   print_ctag(h, tag->tag);
                   h->tags.head = tag->next;
                   free(tag);
                   if (until && tag == until)
                           return;
           }
 }  }
   
   
 /* ARGSUSED */  void
 static int  print_stagq(struct html *h, const struct tag *suntil)
 html_headtagargs(struct md_mbuf *mbuf,  
                 const struct md_args *args, int tok,  
                 const int *argc, const char **argv, size_t *res)  
 {  {
           struct tag      *tag;
   
         return(html_printargs(mbuf, tok, "head", argc, argv, res));          while ((tag = h->tags.head) != NULL) {
                   if (suntil && tag == suntil)
                           return;
                   /*
                    * Remember to close out and nullify the current
                    * meta-font and table, if applicable.
                    */
                   if (tag == h->metaf)
                           h->metaf = NULL;
                   if (tag == h->tblt)
                           h->tblt = NULL;
                   print_ctag(h, tag->tag);
                   h->tags.head = tag->next;
                   free(tag);
           }
 }  }
   
   void
 /* ARGSUSED */  bufinit(struct html *h)
 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));          h->buf[0] = '\0';
           h->buflen = 0;
 }  }
   
   void
 /* ARGSUSED */  bufcat_style(struct html *h, const char *key, const char *val)
 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));          bufcat(h, key);
           bufcat(h, ":");
           bufcat(h, val);
           bufcat(h, ";");
 }  }
   
   void
 /* ARGSUSED */  bufcat(struct html *h, const char *p)
 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))          h->buflen = strlcat(h->buf, p, BUFSIZ);
                 return(0);          assert(h->buflen < BUFSIZ);
   
         switch (tok) {  
         case (ROFF_Sx):  
                 assert(*argv);  
                 if ( ! ml_nputs(mbuf, " href=\"#", 8, res))  
                         return(0);  
                 if ( ! ml_putstring(mbuf, *argv, res))  
                         return(0);  
                 if ( ! ml_nputs(mbuf, "\"", 1, res))  
                         return(0);  
         default:  
                 break;  
         }  
   
         return(1);  
 }  }
   
   void
 /* ARGSUSED */  bufcat_fmt(struct html *h, const char *fmt, ...)
 static int  
 html_inlinetagname(struct md_mbuf *mbuf,  
                 const struct md_args *args, int tok, size_t *res)  
 {  {
           va_list          ap;
   
         switch (tok) {          va_start(ap, fmt);
         case (ROFF_Pp):          (void)vsnprintf(h->buf + (int)h->buflen,
                 return(ml_nputs(mbuf, "div", 3, res));                          BUFSIZ - h->buflen - 1, fmt, ap);
         case (ROFF_Sx):          va_end(ap);
                 return(ml_nputs(mbuf, "a", 1, res));          h->buflen = strlen(h->buf);
         default:  
                 break;  
         }  
   
         return(ml_puts(mbuf, "span", res));  
 }  }
   
   static void
 static ssize_t  bufncat(struct html *h, const char *p, size_t sz)
 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 htmlq    *q;  
         struct htmlnode *node;  
         int              i;  
   
         assert(ns != MD_NS_DEFAULT);          assert(h->buflen + sz + 1 < BUFSIZ);
         res = 0;          strncat(h->buf, p, sz);
           h->buflen += sz;
         assert(data);  
         q = (struct htmlq *)data;  
   
         if (NULL == (node = calloc(1, sizeof(struct htmlnode)))) {  
                 warn("calloc");  
                 return(-1);  
         }  
   
         node->parent = q->last;  
         node->tok = tok;  
         node->ns = ns;  
   
         if (argc)  {  
                 /* TODO: argv. */  
   
                 assert(argv);  
                 for (i = 0; ROFF_ARGMAX != argc[i]  
                                 && i < ROFF_MAXLINEARG; i++)  
                         node->argc[i] = argc[i];  
                 assert(i != ROFF_MAXLINEARG);  
         }  
   
   
         q->last = node;  
   
         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  buffmt_includes(struct html *h, const char *name)
 html_endtag(struct md_mbuf *mbuf, void *data,  
                 const struct md_args *args, enum md_ns ns, int tok)  
 {  {
         size_t           res;          const char      *p, *pp;
         struct htmlq    *q;  
         struct htmlnode *node;  
   
         assert(ns != MD_NS_DEFAULT);          pp = h->base_includes;
         res = 0;  
           bufinit(h);
         assert(data);          while (NULL != (p = strchr(pp, '%'))) {
         q = (struct htmlq *)data;                  bufncat(h, pp, (size_t)(p - pp));
         node = q->last;                  switch (*(p + 1)) {
                   case('I'):
         switch (ns) {                          bufcat(h, name);
         case (MD_NS_BLOCK):                          break;
                 if ( ! html_blocktagname(mbuf, args, tok,                  default:
                                         q, node->argc,                          bufncat(h, p, 2);
                                         (const char **)node->argv, &res))                          break;
                         return(-1);                  }
                 break;                  pp = p + 2;
         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;  
         }          }
           if (pp)
         q->last = node->parent;                  bufcat(h, pp);
   
         free(node);  
   
         return((ssize_t)res);  
 }  }
   
   void
 static int  buffmt_man(struct html *h,
 html_alloc(void **p)                  const char *name, const char *sec)
 {  {
           const char      *p, *pp;
   
         if (NULL == (*p = calloc(1, sizeof(struct htmlq)))) {          pp = h->base_man;
                 warn("calloc");  
                 return(0);          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, name);
                           break;
                   default:
                           bufncat(h, p, 2);
                           break;
                   }
                   pp = p + 2;
         }          }
         return(1);          if (pp)
                   bufcat(h, pp);
 }  }
   
   void
 static void  bufcat_su(struct html *h, const char *p, const struct roffsu *su)
 html_free(void *p)  
 {  {
         struct htmlq    *q;          double           v;
         struct htmlnode *n;  
   
         assert(p);          v = su->scale;
         q = (struct htmlq *)p;          if (SCALE_MM == su->unit && 0.0 == (v /= 100.0))
                   v = 1.0;
   
         while ((n = q->last)) {          bufcat_fmt(h, "%s: %.2f%s;", p, v, roffscales[su->unit]);
                 q->last = n->parent;  
                 free(n);  
         }  
   
         free(q);  
 }  }
   
   void
 int  bufcat_id(struct html *h, const char *src)
 md_line_html(void *data, char *buf)  
 {  {
   
         return(mlg_line((struct md_mlg *)data, buf));          /* Cf. <http://www.w3.org/TR/html4/types.html#h-6.2>. */
 }  
   
           while ('\0' != *src)
 int                  bufcat_fmt(h, "%.2x", *src++);
 md_exit_html(void *data, int flush)  
 {  
   
         return(mlg_exit((struct md_mlg *)data, flush));  
 }  }
   
   
 void *  
 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;  
         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));  
 }  
   

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.148

CVSweb