X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Fhtml.c;h=82478d189bdd8dd44f87e87023287532b2c6e515;hb=f1db96caae465cb7daaf6efbe69ae17069ea1198;hp=e8416756cb910f7c23a44081809b43c65dbcca92;hpb=345fd1347379bc41ac11b4a0401f70698d22d6f8;p=pspp diff --git a/src/output/html.c b/src/output/html.c index e8416756cb..82478d189b 100644 --- a/src/output/html.c +++ b/src/output/html.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997-9, 2000, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. + Copyright (C) 1997-9, 2000, 2009, 2010, 2011, 2012, 2013, 2014 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -64,10 +64,10 @@ struct html_driver static const struct output_driver_class html_driver_class; -static void html_output_table (struct html_driver *, struct table_item *); +static void html_output_table (struct html_driver *, const struct table_item *); static void escape_string (FILE *file, const char *text, size_t length, - const char *space); + const char *space, const char *newline); static void print_title_tag (FILE *file, const char *name, const char *content); @@ -200,7 +200,7 @@ print_title_tag (FILE *file, const char *name, const char *content) if (content != NULL) { fprintf (file, "<%s>", name); - escape_string (file, content, strlen (content), " "); + escape_string (file, content, strlen (content), " ", " - "); fprintf (file, "\n", name); } } @@ -274,7 +274,7 @@ html_submit (struct output_driver *driver, case TEXT_ITEM_COMMAND_OPEN: fprintf (html->file, "
file, s, strlen (s), "_"); + escape_string (html->file, s, strlen (s), "_", "
"); fprintf (html->file, "\">"); print_title_tag (html->file, "H3", s); break; @@ -289,7 +289,7 @@ html_submit (struct output_driver *driver, case TEXT_ITEM_SYNTAX: fprintf (html->file, "
");
-          escape_string (html->file, s, strlen (s), " ");
+          escape_string (html->file, s, strlen (s), " ", "
"); fprintf (html->file, "
\n"); break; @@ -325,19 +325,23 @@ html_submit (struct output_driver *driver, } } -/* Write LENGTH characters in TEXT to file F, escaping characters - as necessary for HTML. Spaces are replaced by SPACE, which - should be " " or " ". */ +/* Write LENGTH characters in TEXT to file F, escaping characters as necessary + for HTML. Spaces are replaced by SPACE, which should be " " or " " + New-lines are replaced by NEWLINE, which might be "
" or "\n" or + something else appropriate. */ static void escape_string (FILE *file, const char *text, size_t length, - const char *space) + const char *space, const char *newline) { while (length-- > 0) { char c = *text++; switch (c) { + case '\n': + fputs (newline, file); + break; case '&': fputs ("&", file); break; @@ -370,19 +374,18 @@ put_border (FILE *file, int n_borders, int style, const char *border_name) } static void -html_output_table (struct html_driver *html, struct table_item *item) +html_output_table (struct html_driver *html, const struct table_item *item) { const struct table *t = table_item_get_table (item); - const char *caption; + const char *caption = table_item_get_caption (item); int x, y; - fputs ("\n", html->file); + fputs ("
\n", html->file); - caption = table_item_get_caption (item); if (caption != NULL) { fputs (" \n", html->file); } @@ -391,12 +394,12 @@ html_output_table (struct html_driver *html, struct table_item *item) fputs (" \n", html->file); for (x = 0; x < table_nc (t); x++) { + const struct cell_contents *c; struct table_cell cell; const char *tag; bool is_header; int alignment, colspan, rowspan; int top, left, right, bottom, n_borders; - const char *s; table_get_cell (t, x, y, &cell); if (x != cell.d[TABLE_HORZ][0] || y != cell.d[TABLE_VERT][0]) @@ -410,7 +413,9 @@ html_output_table (struct html_driver *html, struct table_item *item) tag = is_header ? "TH" : "TD"; fprintf (html->file, " <%s", tag); - alignment = cell.options & TAB_ALIGNMENT; + alignment = (cell.n_contents > 0 + ? cell.contents[0].options & TAB_ALIGNMENT + : TAB_LEFT); if (alignment != TAB_LEFT) fprintf (html->file, " ALIGN=\"%s\"", alignment == TAB_RIGHT ? "RIGHT" : "CENTER"); @@ -432,9 +437,9 @@ html_output_table (struct html_driver *html, struct table_item *item) if (top > TAL_GAP) put_border (html->file, n_borders++, top, "top"); - if (y == table_nr (t) - 1) + if (y + rowspan == table_nr (t)) { - bottom = table_get_rule (t, TABLE_VERT, x, y + 1); + bottom = table_get_rule (t, TABLE_VERT, x, y + rowspan); if (bottom > TAL_GAP) put_border (html->file, n_borders++, bottom, "bottom"); } @@ -443,9 +448,9 @@ html_output_table (struct html_driver *html, struct table_item *item) if (left > TAL_GAP) put_border (html->file, n_borders++, left, "left"); - if (x == table_nc (t) - 1) + if (x + colspan == table_nc (t)) { - right = table_get_rule (t, TABLE_HORZ, x + 1, y); + right = table_get_rule (t, TABLE_HORZ, x + colspan, y); if (right > TAL_GAP) put_border (html->file, n_borders++, right, "right"); } @@ -457,22 +462,31 @@ html_output_table (struct html_driver *html, struct table_item *item) putc ('>', html->file); /* Output cell contents. */ - s = cell.contents; - if (cell.options & TAB_EMPH) - fputs ("", html->file); - if (cell.options & TAB_FIX) - { - fputs ("", html->file); - escape_string (html->file, s, strlen (s), " "); - fputs ("", html->file); - } - else + for (c = cell.contents; c < &cell.contents[cell.n_contents]; c++) { - s += strspn (s, CC_SPACES); - escape_string (html->file, s, strlen (s), " "); + if (c->text) + { + const char *s = c->text; + + if (c->options & TAB_EMPH) + fputs ("", html->file); + if (c->options & TAB_FIX) + { + fputs ("", html->file); + escape_string (html->file, s, strlen (s), " ", "
"); + fputs ("
", html->file); + } + else + { + s += strspn (s, CC_SPACES); + escape_string (html->file, s, strlen (s), " ", "
"); + } + if (c->options & TAB_EMPH) + fputs ("
", html->file); + } + else + html_output_table (html, c->table); } - if (cell.options & TAB_EMPH) - fputs ("
", html->file); /* Output or . */ fprintf (html->file, "\n", tag); @@ -482,7 +496,7 @@ html_output_table (struct html_driver *html, struct table_item *item) fputs (" \n", html->file); } - fputs ("
", html->file); - escape_string (html->file, caption, strlen (caption), " "); + escape_string (html->file, caption, strlen (caption), " ", "
"); fputs ("
\n\n", html->file); + fputs ("\n\n", html->file); } struct output_driver_factory html_driver_factory =