[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.208 and 1.209

version 1.208, 2014/10/10 15:26:29 version 1.209, 2014/10/30 20:10:02
Line 56  static void    synopsis_pre(struct html *,
Line 56  static void    synopsis_pre(struct html *,
                                 const struct mdoc_node *);                                  const struct mdoc_node *);
   
 static  void              a2width(const char *, struct roffsu *);  static  void              a2width(const char *, struct roffsu *);
 static  void              a2offs(const char *, struct roffsu *);  
   
 static  void              mdoc_root_post(MDOC_ARGS);  static  void              mdoc_root_post(MDOC_ARGS);
 static  int               mdoc_root_pre(MDOC_ARGS);  static  int               mdoc_root_pre(MDOC_ARGS);
Line 281  a2width(const char *p, struct roffsu *su)
Line 280  a2width(const char *p, struct roffsu *su)
 {  {
   
         if ( ! a2roffsu(p, su, SCALE_MAX)) {          if ( ! a2roffsu(p, su, SCALE_MAX)) {
                 su->unit = SCALE_BU;                  su->unit = SCALE_EN;
                 su->scale = html_strlen(p);                  su->scale = html_strlen(p);
         }          }
 }  }
Line 328  synopsis_pre(struct html *h, const struct mdoc_node *n
Line 327  synopsis_pre(struct html *h, const struct mdoc_node *n
         }          }
 }  }
   
 /*  
  * Calculate the scaling unit passed in an `-offset' argument.  This  
  * uses either a native scaling unit (e.g., 1i, 2m), one of a set of  
  * predefined strings (indent, etc.), or the string length of the value.  
  */  
 static void  static void
 a2offs(const char *p, struct roffsu *su)  
 {  
   
         /* FIXME: "right"? */  
   
         if (0 == strcmp(p, "left"))  
                 SCALE_HS_INIT(su, 0);  
         else if (0 == strcmp(p, "indent"))  
                 SCALE_HS_INIT(su, INDENT);  
         else if (0 == strcmp(p, "indent-two"))  
                 SCALE_HS_INIT(su, INDENT * 2);  
         else if ( ! a2roffsu(p, su, SCALE_MAX))  
                 SCALE_HS_INIT(su, html_strlen(p));  
 }  
   
 static void  
 print_mdoc(MDOC_ARGS)  print_mdoc(MDOC_ARGS)
 {  {
         struct tag      *t, *tt;          struct tag      *t, *tt;
Line 994  mdoc_bl_pre(MDOC_ARGS)
Line 972  mdoc_bl_pre(MDOC_ARGS)
         /* Set the block's left-hand margin. */          /* Set the block's left-hand margin. */
   
         if (n->norm->Bl.offs) {          if (n->norm->Bl.offs) {
                 a2offs(n->norm->Bl.offs, &su);                  a2width(n->norm->Bl.offs, &su);
                 bufcat_su(h, "margin-left", &su);                  bufcat_su(h, "margin-left", &su);
         }          }
   
Line 1160  mdoc_bd_pre(MDOC_ARGS)
Line 1138  mdoc_bd_pre(MDOC_ARGS)
                 return(1);                  return(1);
         }          }
   
         SCALE_HS_INIT(&su, 0);          /* Handle the -offset argument. */
         if (n->norm->Bd.offs)  
                 a2offs(n->norm->Bd.offs, &su);          if (n->norm->Bd.offs == NULL ||
               ! strcmp(n->norm->Bd.offs, "left"))
                   SCALE_HS_INIT(&su, 0);
           else if ( ! strcmp(n->norm->Bd.offs, "indent"))
                   SCALE_HS_INIT(&su, INDENT);
           else if ( ! strcmp(n->norm->Bd.offs, "indent-two"))
                   SCALE_HS_INIT(&su, INDENT * 2);
           else
                   a2width(n->norm->Bd.offs, &su);
   
         bufinit(h);          bufinit(h);
         bufcat_su(h, "margin-left", &su);          bufcat_su(h, "margin-left", &su);

Legend:
Removed from v.1.208  
changed lines
  Added in v.1.209

CVSweb