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

Diff for /mandoc/man_html.c between version 1.100 and 1.101

version 1.100, 2014/09/27 09:13:39 version 1.101, 2014/09/27 09:20:03
Line 299  a2width(const struct man_node *n, struct roffsu *su)
Line 299  a2width(const struct man_node *n, struct roffsu *su)
 static void  static void
 man_root_pre(MAN_ARGS)  man_root_pre(MAN_ARGS)
 {  {
         struct htmlpair  tag[2];          struct htmlpair  tag;
         struct tag      *t, *tt;          struct tag      *t, *tt;
         char            *title;          char            *title;
   
Line 307  man_root_pre(MAN_ARGS)
Line 307  man_root_pre(MAN_ARGS)
         assert(man->msec);          assert(man->msec);
         mandoc_asprintf(&title, "%s(%s)", man->title, man->msec);          mandoc_asprintf(&title, "%s(%s)", man->title, man->msec);
   
         PAIR_CLASS_INIT(&tag[0], "head");          PAIR_CLASS_INIT(&tag, "head");
         t = print_otag(h, TAG_TABLE, 1, tag);          t = print_otag(h, TAG_TABLE, 1, &tag);
         PAIR_INIT(&tag[0], ATTR_WIDTH, "30%");          PAIR_INIT(&tag, ATTR_WIDTH, "30%");
         print_otag(h, TAG_COL, 1, tag);          print_otag(h, TAG_COL, 1, &tag);
         print_otag(h, TAG_COL, 1, tag);          print_otag(h, TAG_COL, 1, &tag);
         print_otag(h, TAG_COL, 1, tag);          print_otag(h, TAG_COL, 1, &tag);
   
         print_otag(h, TAG_TBODY, 0, NULL);          print_otag(h, TAG_TBODY, 0, NULL);
   
         tt = print_otag(h, TAG_TR, 0, NULL);          tt = print_otag(h, TAG_TR, 0, NULL);
   
         PAIR_CLASS_INIT(&tag[0], "head-ltitle");          PAIR_CLASS_INIT(&tag, "head-ltitle");
         print_otag(h, TAG_TD, 1, tag);          print_otag(h, TAG_TD, 1, &tag);
         print_text(h, title);          print_text(h, title);
         print_stagq(h, tt);          print_stagq(h, tt);
   
         PAIR_CLASS_INIT(&tag[0], "head-vol");          PAIR_CLASS_INIT(&tag, "head-vol");
         PAIR_INIT(&tag[1], ATTR_ALIGN, "center");          print_otag(h, TAG_TD, 1, &tag);
         print_otag(h, TAG_TD, 2, tag);  
         if (NULL != man->vol)          if (NULL != man->vol)
                 print_text(h, man->vol);                  print_text(h, man->vol);
         print_stagq(h, tt);          print_stagq(h, tt);
   
         PAIR_CLASS_INIT(&tag[0], "head-rtitle");          PAIR_CLASS_INIT(&tag, "head-rtitle");
         print_otag(h, TAG_TD, 1, tag);          print_otag(h, TAG_TD, 1, &tag);
         print_text(h, title);          print_text(h, title);
         print_tagq(h, t);          print_tagq(h, t);
         free(title);          free(title);
Line 340  man_root_pre(MAN_ARGS)
Line 339  man_root_pre(MAN_ARGS)
 static void  static void
 man_root_post(MAN_ARGS)  man_root_post(MAN_ARGS)
 {  {
         struct htmlpair  tag[2];          struct htmlpair  tag;
         struct tag      *t, *tt;          struct tag      *t, *tt;
   
         PAIR_CLASS_INIT(&tag[0], "foot");          PAIR_CLASS_INIT(&tag, "foot");
         t = print_otag(h, TAG_TABLE, 1, tag);          t = print_otag(h, TAG_TABLE, 1, &tag);
         PAIR_INIT(&tag[0], ATTR_WIDTH, "50%");          PAIR_INIT(&tag, ATTR_WIDTH, "50%");
         print_otag(h, TAG_COL, 1, tag);          print_otag(h, TAG_COL, 1, &tag);
         print_otag(h, TAG_COL, 1, tag);          print_otag(h, TAG_COL, 1, &tag);
   
         tt = print_otag(h, TAG_TR, 0, NULL);          tt = print_otag(h, TAG_TR, 0, NULL);
   
         PAIR_CLASS_INIT(&tag[0], "foot-date");          PAIR_CLASS_INIT(&tag, "foot-date");
         print_otag(h, TAG_TD, 1, tag);          print_otag(h, TAG_TD, 1, &tag);
   
         assert(man->date);          assert(man->date);
         print_text(h, man->date);          print_text(h, man->date);
         print_stagq(h, tt);          print_stagq(h, tt);
   
         PAIR_CLASS_INIT(&tag[0], "foot-os");          PAIR_CLASS_INIT(&tag, "foot-os");
         print_otag(h, TAG_TD, 1, tag);          print_otag(h, TAG_TD, 1, &tag);
   
         if (man->source)          if (man->source)
                 print_text(h, man->source);                  print_text(h, man->source);

Legend:
Removed from v.1.100  
changed lines
  Added in v.1.101

CVSweb