1 /* $Id: tbl_html.c,v 1.18 2015/10/12 00:08:16 schwarze Exp $ */
3 * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2014, 2015 Ingo Schwarze <schwarze@openbsd.org>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 #include <sys/types.h>
31 static void html_tblopen(struct html
*, const struct tbl_span
*);
32 static size_t html_tbl_len(size_t, void *);
33 static size_t html_tbl_strlen(const char *, void *);
37 html_tbl_len(size_t sz
, void *arg
)
44 html_tbl_strlen(const char *p
, void *arg
)
51 html_tblopen(struct html
*h
, const struct tbl_span
*sp
)
58 if (h
->tbl
.cols
== NULL
) {
59 h
->tbl
.len
= html_tbl_len
;
60 h
->tbl
.slen
= html_tbl_strlen
;
61 tblcalc(&h
->tbl
, sp
, 0);
64 assert(NULL
== h
->tblt
);
65 PAIR_CLASS_INIT(&tag
, "tbl");
66 h
->tblt
= print_otag(h
, TAG_TABLE
, 1, &tag
);
68 for (ic
= 0; ic
< sp
->opts
->cols
; ic
++) {
70 col
= h
->tbl
.cols
+ ic
;
71 SCALE_HS_INIT(&su
, col
->width
);
72 bufcat_su(h
, "width", &su
);
73 PAIR_STYLE_INIT(&tag
, h
);
74 print_otag(h
, TAG_COL
, 1, &tag
);
77 print_otag(h
, TAG_TBODY
, 0, NULL
);
81 print_tblclose(struct html
*h
)
85 print_tagq(h
, h
->tblt
);
90 print_tbl(struct html
*h
, const struct tbl_span
*sp
)
92 const struct tbl_dat
*dp
;
97 /* Inhibit printing of spaces: we do padding ourselves. */
104 h
->flags
|= HTML_NONOSPACE
;
105 h
->flags
|= HTML_NOSPACE
;
107 tt
= print_otag(h
, TAG_TR
, 0, NULL
);
111 case TBL_SPAN_DHORIZ
:
112 PAIR_INIT(&tag
, ATTR_COLSPAN
, "0");
113 print_otag(h
, TAG_TD
, 1, &tag
);
117 for (ic
= 0; ic
< sp
->opts
->cols
; ic
++) {
119 print_otag(h
, TAG_TD
, 0, NULL
);
121 if (dp
== NULL
|| dp
->layout
->col
> ic
)
123 if (dp
->layout
->pos
!= TBL_CELL_DOWN
)
124 if (dp
->string
!= NULL
)
125 print_text(h
, dp
->string
);
133 h
->flags
&= ~HTML_NONOSPACE
;
135 if (sp
->next
== NULL
) {