diff options
author | Stephen Frost | 2014-09-12 16:04:37 +0000 |
---|---|---|
committer | Stephen Frost | 2014-09-12 16:04:37 +0000 |
commit | a2dabf0e1dda93c860b10bff7b73617e7b090108 (patch) | |
tree | 9f53e54cfd0537dae516d792504d467fa30d4ab2 /doc/src | |
parent | 82962838d4bea2a20babbd2efacb48b268b4a689 (diff) |
Add unicode_{column|header|border}_style to psql
With the unicode linestyle, this adds support to control if the
column, header, or border style should be single or double line
unicode characters. The default remains 'single'.
In passing, clean up the border documentation and address some
minor formatting/spelling issues.
Pavel Stehule, with some additional changes by me.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/psql-ref.sgml | 40 |
1 files changed, 35 insertions, 5 deletions
diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml index aa71674731e..e7fcc734b53 100644 --- a/doc/src/sgml/ref/psql-ref.sgml +++ b/doc/src/sgml/ref/psql-ref.sgml @@ -1996,12 +1996,12 @@ lo_import 152801 the number the more borders and lines the tables will have, but this depends on the particular format. In <acronym>HTML</acronym> format, this will translate directly - into the <literal>border=...</literal> attribute; in the - other formats only values 0 (no border), 1 (internal dividing lines), - and 2 (table frame) make sense. + into the <literal>border=...</literal> attribute; in <literal>latex</literal> and <literal>latex-longtable</literal> - also support a <literal>border</literal> value of 3 which adds - a dividing line between each row. + formats, a value of 3 will add a dividing line between each row; in + the other formats only values 0 (no border), 1 (internal dividing + lines), and 2 (table frame) make sense and values above 2 will be + treated the same as <literal>border = 2</literal>. </para> </listitem> </varlistentry> @@ -2306,6 +2306,36 @@ lo_import 152801 </para> </listitem> </varlistentry> + + <varlistentry> + <term><literal>unicode_border_style</literal></term> + <listitem> + <para> + Sets the border drawing style for the unicode linestyle to one + of <literal>single</literal> or <literal>double</literal>. + </para> + </listitem> + </varlistentry> + + <varlistentry> + <term><literal>unicode_column_style</literal></term> + <listitem> + <para> + Sets the column drawing style for the unicode linestyle to one + of <literal>single</literal> or <literal>double</literal>. + </para> + </listitem> + </varlistentry> + + <varlistentry> + <term><literal>unicode_header_style</literal></term> + <listitem> + <para> + Sets the header drawing style for the unicode linestyle to one + of <literal>single</literal> or <literal>double</literal>. + </para> + </listitem> + </varlistentry> </variablelist> </para> |