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

Diff for /mandoc/html.c between version 1.109 and 1.123

version 1.109, 2010/07/23 00:08:57 version 1.123, 2010/12/24 14:14:00
Line 57  static const struct htmldata htmltags[TAG_MAX] = {
Line 57  static const struct htmldata htmltags[TAG_MAX] = {
         {"br",          HTML_CLRLINE | HTML_NOSTACK | HTML_AUTOCLOSE}, /* TAG_BR */          {"br",          HTML_CLRLINE | HTML_NOSTACK | HTML_AUTOCLOSE}, /* TAG_BR */
         {"a",           0}, /* TAG_A */          {"a",           0}, /* TAG_A */
         {"table",       HTML_CLRLINE}, /* TAG_TABLE */          {"table",       HTML_CLRLINE}, /* TAG_TABLE */
           {"tbody",       HTML_CLRLINE}, /* TAG_TBODY */
         {"col",         HTML_CLRLINE | HTML_NOSTACK | HTML_AUTOCLOSE}, /* TAG_COL */          {"col",         HTML_CLRLINE | HTML_NOSTACK | HTML_AUTOCLOSE}, /* TAG_COL */
         {"tr",          HTML_CLRLINE}, /* TAG_TR */          {"tr",          HTML_CLRLINE}, /* TAG_TR */
         {"td",          HTML_CLRLINE}, /* TAG_TD */          {"td",          HTML_CLRLINE}, /* TAG_TD */
         {"li",          HTML_CLRLINE}, /* TAG_LI */          {"li",          HTML_CLRLINE}, /* TAG_LI */
         {"ul",          HTML_CLRLINE}, /* TAG_UL */          {"ul",          HTML_CLRLINE}, /* TAG_UL */
         {"ol",          HTML_CLRLINE}, /* TAG_OL */          {"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 */
 };  };
   
 static  const char      *const htmlfonts[HTMLFONT_MAX] = {  
         "roman",  
         "bold",  
         "italic"  
 };  
   
 static  const char      *const htmlattrs[ATTR_MAX] = {  static  const char      *const htmlattrs[ATTR_MAX] = {
         "http-equiv",          "http-equiv", /* ATTR_HTTPEQUIV */
         "content",          "content", /* ATTR_CONTENT */
         "name",          "name", /* ATTR_NAME */
         "rel",          "rel", /* ATTR_REL */
         "href",          "href", /* ATTR_HREF */
         "type",          "type", /* ATTR_TYPE */
         "media",          "media", /* ATTR_MEDIA */
         "class",          "class", /* ATTR_CLASS */
         "style",          "style", /* ATTR_STYLE */
         "width",          "width", /* ATTR_WIDTH */
         "valign",          "id", /* ATTR_ID */
         "target",          "summary", /* ATTR_SUMMARY */
         "id",          "align", /* ATTR_ALIGN */
         "summary",  
 };  };
   
 static  void              print_spec(struct html *, enum roffdeco,  static  void              print_spec(struct html *, enum roffdeco,
Line 116  ml_alloc(char *outopts, enum htmltype type)
Line 120  ml_alloc(char *outopts, enum htmltype type)
         h = calloc(1, sizeof(struct html));          h = calloc(1, sizeof(struct html));
         if (NULL == h) {          if (NULL == h) {
                 perror(NULL);                  perror(NULL);
                 exit(EXIT_FAILURE);                  exit((int)MANDOCLEVEL_SYSERR);
         }          }
   
         h->type = type;          h->type = type;
         h->tags.head = NULL;          h->tags.head = NULL;
         h->ords.head = NULL;  
         h->symtab = chars_init(CHARS_HTML);          h->symtab = chars_init(CHARS_HTML);
   
         while (outopts && *outopts)          while (outopts && *outopts)
Line 162  void
Line 165  void
 html_free(void *p)  html_free(void *p)
 {  {
         struct tag      *tag;          struct tag      *tag;
         struct ord      *ord;  
         struct html     *h;          struct html     *h;
   
         h = (struct html *)p;          h = (struct html *)p;
   
         while ((ord = h->ords.head) != NULL) {  
                 h->ords.head = ord->next;  
                 free(ord);  
         }  
   
         while ((tag = h->tags.head) != NULL) {          while ((tag = h->tags.head) != NULL) {
                 h->tags.head = tag->next;                  h->tags.head = tag->next;
                 free(tag);                  free(tag);
Line 254  print_res(struct html *h, const char *p, size_t len)
Line 251  print_res(struct html *h, const char *p, size_t len)
 }  }
   
   
 struct tag *  
 print_ofont(struct html *h, enum htmlfont font)  
 {  
         struct htmlpair  tag;  
   
         h->metal = h->metac;  
         h->metac = font;  
   
         /* FIXME: DECO_ROMAN should just close out preexisting. */  
   
         if (h->metaf && h->tags.head == h->metaf)  
                 print_tagq(h, h->metaf);  
   
         PAIR_CLASS_INIT(&tag, htmlfonts[font]);  
         h->metaf = print_otag(h, TAG_SPAN, 1, &tag);  
         return(h->metaf);  
 }  
   
   
 static void  static void
 print_metaf(struct html *h, enum roffdeco deco)  print_metaf(struct html *h, enum roffdeco deco)
 {  {
Line 296  print_metaf(struct html *h, enum roffdeco deco)
Line 274  print_metaf(struct html *h, enum roffdeco deco)
                 /* NOTREACHED */                  /* NOTREACHED */
         }          }
   
         (void)print_ofont(h, font);          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);
 }  }
   
   
Line 398  print_otag(struct html *h, enum htmltag tag, 
Line 387  print_otag(struct html *h, enum htmltag tag, 
                 t = malloc(sizeof(struct tag));                  t = malloc(sizeof(struct tag));
                 if (NULL == t) {                  if (NULL == t) {
                         perror(NULL);                          perror(NULL);
                         exit(EXIT_FAILURE);                          exit((int)MANDOCLEVEL_SYSERR);
                 }                  }
                 t->tag = tag;                  t->tag = tag;
                 t->next = h->tags.head;                  t->next = h->tags.head;
Line 419  print_otag(struct html *h, enum htmltag tag, 
Line 408  print_otag(struct html *h, enum htmltag tag, 
   
         if ( ! (h->flags & HTML_NONOSPACE))          if ( ! (h->flags & HTML_NONOSPACE))
                 h->flags &= ~HTML_NOSPACE;                  h->flags &= ~HTML_NOSPACE;
           else
                   h->flags |= HTML_NOSPACE;
   
         /* Print out the tag name and attributes. */          /* Print out the tag name and attributes. */
   
Line 448  print_otag(struct html *h, enum htmltag tag, 
Line 439  print_otag(struct html *h, enum htmltag tag, 
         putchar('>');          putchar('>');
   
         h->flags |= HTML_NOSPACE;          h->flags |= HTML_NOSPACE;
   
           if ((HTML_AUTOCLOSE | HTML_CLRLINE) & htmltags[tag].flags)
                   putchar('\n');
   
         return(t);          return(t);
 }  }
   
Line 478  print_xmltype(struct html *h)
Line 473  print_xmltype(struct html *h)
 {  {
   
         if (HTML_XHTML_1_0_STRICT == h->type)          if (HTML_XHTML_1_0_STRICT == h->type)
                 printf("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");                  puts("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
 }  }
   
   
Line 545  print_text(struct html *h, const char *word)
Line 540  print_text(struct html *h, const char *word)
                         printf("&#160;");                          printf("&#160;");
         }          }
   
           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);          assert(word);
         if ( ! print_encode(h, word, 0))          if ( ! print_encode(h, word, 0))
                 if ( ! (h->flags & HTML_NONOSPACE))                  if ( ! (h->flags & HTML_NONOSPACE))
                         h->flags &= ~HTML_NOSPACE;                          h->flags &= ~HTML_NOSPACE;
   
           if (h->metaf) {
                   print_tagq(h, h->metaf);
                   h->metaf = NULL;
           }
   
           h->flags &= ~HTML_IGNDELIM;
   
         /*          /*
          * Note that we don't process the pipe: the parser sees it as           * Note that we don't process the pipe: the parser sees it as

Legend:
Removed from v.1.109  
changed lines
  Added in v.1.123

CVSweb