[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.200 and 1.201

version 1.200, 2014/09/17 19:55:59 version 1.201, 2014/09/27 09:02:19
Line 484  print_mdoc_node(MDOC_ARGS)
Line 484  print_mdoc_node(MDOC_ARGS)
 static void  static void
 mdoc_root_post(MDOC_ARGS)  mdoc_root_post(MDOC_ARGS)
 {  {
         struct htmlpair  tag[3];          struct htmlpair  tag[2];
         struct tag      *t, *tt;          struct tag      *t, *tt;
   
         PAIR_SUMMARY_INIT(&tag[0], "Document Footer");          PAIR_SUMMARY_INIT(&tag[0], "Document Footer");
         PAIR_CLASS_INIT(&tag[1], "foot");          PAIR_CLASS_INIT(&tag[1], "foot");
         PAIR_INIT(&tag[2], ATTR_WIDTH, "100%");          t = print_otag(h, TAG_TABLE, 2, tag);
         t = print_otag(h, TAG_TABLE, 3, tag);  
         PAIR_INIT(&tag[0], ATTR_WIDTH, "50%");          PAIR_INIT(&tag[0], 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);
Line 514  mdoc_root_post(MDOC_ARGS)
Line 513  mdoc_root_post(MDOC_ARGS)
 static int  static int
 mdoc_root_pre(MDOC_ARGS)  mdoc_root_pre(MDOC_ARGS)
 {  {
         struct htmlpair  tag[3];          struct htmlpair  tag[2];
         struct tag      *t, *tt;          struct tag      *t, *tt;
         char            *volume, *title;          char            *volume, *title;
   
Line 532  mdoc_root_pre(MDOC_ARGS)
Line 531  mdoc_root_pre(MDOC_ARGS)
   
         PAIR_SUMMARY_INIT(&tag[0], "Document Header");          PAIR_SUMMARY_INIT(&tag[0], "Document Header");
         PAIR_CLASS_INIT(&tag[1], "head");          PAIR_CLASS_INIT(&tag[1], "head");
         PAIR_INIT(&tag[2], ATTR_WIDTH, "100%");          t = print_otag(h, TAG_TABLE, 2, tag);
         t = print_otag(h, TAG_TABLE, 3, tag);  
         PAIR_INIT(&tag[0], ATTR_WIDTH, "30%");          PAIR_INIT(&tag[0], 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);

Legend:
Removed from v.1.200  
changed lines
  Added in v.1.201

CVSweb