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

Diff for /mandoc/mdoc_html.c between version 1.13 and 1.14

version 1.13, 2009/09/26 17:35:49 version 1.14, 2009/09/26 18:02:51
Line 873  mdoc_bx_pre(MDOC_ARGS)
Line 873  mdoc_bx_pre(MDOC_ARGS)
 static int  static int
 mdoc_tbl_block_pre(MDOC_ARGS, int t, int w, int o, int c)  mdoc_tbl_block_pre(MDOC_ARGS, int t, int w, int o, int c)
 {  {
         struct htmlpair  tag;          struct htmlpair          tag;
           const struct mdoc_node  *nn;
   
         switch (t) {          switch (t) {
         case (MDOC_Column):          case (MDOC_Column):
Line 889  mdoc_tbl_block_pre(MDOC_ARGS, int t, int w, int o, int
Line 890  mdoc_tbl_block_pre(MDOC_ARGS, int t, int w, int o, int
         }          }
   
         if ( ! c && MDOC_Column != t) {          if ( ! c && MDOC_Column != t) {
                if (n->prev && n->prev->body->child)                  for (nn = n; nn; nn = nn->parent) {
                        bufcat("padding-top: 1em;");                          if (MDOC_BLOCK != nn->type)
                else if (NULL == n->prev)                                  continue;
                        bufcat("padding-top: 1em;");                          switch (nn->tok) {
                           case (MDOC_Ss):
                                   /* FALLTHROUGH */
                           case (MDOC_Sh):
                                   c = 1;
                                   break;
                           default:
                                   break;
                           }
                           if (nn->prev)
                                   break;
                   }
                   if (MDOC_Diag == t && n->prev)
                           if (NULL == n->prev->body->child)
                                   c = 1;
                   if ( ! c)
                           bufcat("padding-top: 1em;");
         }          }
   
         tag.key = ATTR_STYLE;          tag.key = ATTR_STYLE;
Line 988  mdoc_tbl_pre(MDOC_ARGS, int type)
Line 1005  mdoc_tbl_pre(MDOC_ARGS, int type)
         if (MDOC_BLOCK != n->type)          if (MDOC_BLOCK != n->type)
                 bl = bl->parent;                  bl = bl->parent;
   
         /* FIXME: fmt_vspace() equivalent. */  
   
         assert(bl->args);          assert(bl->args);
   
         w = o = c = 0;          w = o = c = 0;
Line 1065  mdoc_bl_pre(MDOC_ARGS)
Line 1080  mdoc_bl_pre(MDOC_ARGS)
         if (MDOC_Enum != a2list(n))          if (MDOC_Enum != a2list(n))
                 return(1);                  return(1);
   
           /* Allocate an -enum on the stack of indices. */
   
         ord = malloc(sizeof(struct ord));          ord = malloc(sizeof(struct ord));
         if (NULL == ord)          if (NULL == ord)
                 err(EXIT_FAILURE, "malloc");                  err(EXIT_FAILURE, "malloc");
Line 1310  mdoc_bd_pre(MDOC_ARGS)
Line 1327  mdoc_bd_pre(MDOC_ARGS)
 {  {
         struct htmlpair          tag[2];          struct htmlpair          tag[2];
         int                      t, c, o, i;          int                      t, c, o, i;
         const struct mdoc_node  *bl;          const struct mdoc_node  *bl, *nn;
   
         /* FIXME: fmt_vspace() shit. */  
   
         if (MDOC_BLOCK == n->type)          if (MDOC_BLOCK == n->type)
                 bl = n;                  bl = n;
         else if (MDOC_HEAD == n->type)          else if (MDOC_HEAD == n->type)
Line 1346  mdoc_bd_pre(MDOC_ARGS)
Line 1361  mdoc_bd_pre(MDOC_ARGS)
         if (MDOC_BLOCK == n->type) {          if (MDOC_BLOCK == n->type) {
                 if (o)                  if (o)
                         buffmt("margin-left: %dem;", o);                          buffmt("margin-left: %dem;", o);
                 bufcat("margin-top: 1em;");                  if ( ! c) {
                           for (nn = n; nn; nn = nn->parent) {
                                   if (MDOC_BLOCK != nn->type)
                                           continue;
                                   switch (nn->tok) {
                                   case (MDOC_Ss):
                                           /* FALLTHROUGH */
                                   case (MDOC_Sh):
                                           c = 1;
                                           break;
                                   default:
                                           break;
                                   }
                                   if (nn->prev)
                                           break;
                           }
                           if ( ! c)
                                   bufcat("margin-top: 1em;");
                   }
                 tag[0].key = ATTR_STYLE;                  tag[0].key = ATTR_STYLE;
                 tag[0].val = buf;                  tag[0].val = buf;
                 print_otag(h, TAG_DIV, 1, tag);                  print_otag(h, TAG_DIV, 1, tag);
                 return(1);                  return(1);
         }          }
   
         switch (t) {          if (MDOC_Unfilled != t && MDOC_Literal != t)
         case (MDOC_Unfilled):  
         case (MDOC_Literal):  
                 break;  
         default:  
                 return(1);                  return(1);
         }  
   
         bufcat("white-space: pre;");          bufcat("white-space: pre;");
         tag[0].key = ATTR_STYLE;          tag[0].key = ATTR_STYLE;
Line 1369  mdoc_bd_pre(MDOC_ARGS)
Line 1397  mdoc_bd_pre(MDOC_ARGS)
   
         print_otag(h, TAG_DIV, 2, tag);          print_otag(h, TAG_DIV, 2, tag);
   
         for (n = n->child; n; n = n->next) {          for (nn = n->child; nn; nn = nn->next) {
                 h->flags |= HTML_NOSPACE;                  print_mdoc_node(m, nn, h);
                 print_mdoc_node(m, n, h);                  if (NULL == nn->next)
                 if (n->next)                          continue;
                   if (nn->prev && nn->prev->line < nn->line)
                         print_text(h, "\n");                          print_text(h, "\n");
         }          }
   

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14

CVSweb