Skip to content
Snippets Groups Projects
Commit 8bf47f45 authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Fix HTML alignment in PQprint.

Christoph Zwerschke
parent 72153c05
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
* didn't really belong there. * didn't really belong there.
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-print.c,v 1.65 2006/02/06 02:23:07 momjian Exp $ * $PostgreSQL: pgsql/src/interfaces/libpq/fe-print.c,v 1.66 2006/02/07 00:26:15 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -256,7 +256,7 @@ PQprint(FILE *fout, const PGresult *res, const PQprintOpt *po) ...@@ -256,7 +256,7 @@ PQprint(FILE *fout, const PGresult *res, const PQprintOpt *po)
{ {
if (po->html3) if (po->html3)
fprintf(fout, fprintf(fout,
"<table %s><caption align=high>%d</caption>\n", "<table %s><caption align=\"top\">%d</caption>\n",
po->tableOpt ? po->tableOpt : "", i); po->tableOpt ? po->tableOpt : "", i);
else else
fprintf(fout, libpq_gettext("-- RECORD %d --\n"), i); fprintf(fout, libpq_gettext("-- RECORD %d --\n"), i);
...@@ -276,12 +276,12 @@ PQprint(FILE *fout, const PGresult *res, const PQprintOpt *po) ...@@ -276,12 +276,12 @@ PQprint(FILE *fout, const PGresult *res, const PQprintOpt *po)
{ {
if (po->caption) if (po->caption)
fprintf(fout, fprintf(fout,
"<table %s><caption align=high>%s</caption>\n", "<table %s><caption align=\"top\">%s</caption>\n",
po->tableOpt ? po->tableOpt : "", po->tableOpt ? po->tableOpt : "",
po->caption); po->caption);
else else
fprintf(fout, fprintf(fout,
"<table %s><caption align=high>" "<table %s><caption align=\"top\">"
"Retrieved %d rows * %d fields" "Retrieved %d rows * %d fields"
"</caption>\n", "</caption>\n",
po->tableOpt ? po->tableOpt : "", nTups, nFields); po->tableOpt ? po->tableOpt : "", nTups, nFields);
...@@ -406,8 +406,8 @@ do_field(const PQprintOpt *po, const PGresult *res, ...@@ -406,8 +406,8 @@ do_field(const PQprintOpt *po, const PGresult *res,
{ {
if (po->html3) if (po->html3)
fprintf(fout, fprintf(fout,
"<tr><td align=left><b>%s</b></td>" "<tr><td align=\"left\"><b>%s</b></td>"
"<td align=%s>%s</td></tr>\n", "<td align=\"%s\">%s</td></tr>\n",
fieldNames[j], fieldNames[j],
fieldNotNum[j] ? "left" : "right", fieldNotNum[j] ? "left" : "right",
pval); pval);
...@@ -502,7 +502,7 @@ do_header(FILE *fout, const PQprintOpt *po, const int nFields, int *fieldMax, ...@@ -502,7 +502,7 @@ do_header(FILE *fout, const PQprintOpt *po, const int nFields, int *fieldMax,
if (po->html3) if (po->html3)
{ {
fprintf(fout, "<th align=%s>%s</th>", fprintf(fout, "<th align=\"%s\">%s</th>",
fieldNotNum[j] ? "left" : "right", fieldNames[j]); fieldNotNum[j] ? "left" : "right", fieldNames[j]);
} }
else else
...@@ -546,7 +546,7 @@ output_row(FILE *fout, const PQprintOpt *po, const int nFields, char **fields, ...@@ -546,7 +546,7 @@ output_row(FILE *fout, const PQprintOpt *po, const int nFields, char **fields,
char *p = fields[row_index * nFields + field_index]; char *p = fields[row_index * nFields + field_index];
if (po->html3) if (po->html3)
fprintf(fout, "<td align=%s>%s</td>", fprintf(fout, "<td align=\"%s\">%s</td>",
fieldNotNum[field_index] ? "left" : "right", p ? p : ""); fieldNotNum[field_index] ? "left" : "right", p ? p : "");
else else
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment