Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 336aa51

Browse files
committed
Doc: marginal hacking to remove some PDF build warnings.
This patch eliminates a few more "exceed the available area" warnings whose causes aren't particularly connected to anything else. The only one really worthy of comment is that I increased the space allowed for an <orderedlist>'s numbers, because the default of 1em doesn't quite work for more than one digit. The rest are one-off insertions of &zwsp; and suchlike tweaks, in places where they shouldn't do any damage to the material. (In particular, although I split some long identifiers with zwsp's, there are other nearby occurrences of each one; so those changes shouldn't hurt greppability of the document sources.)
1 parent e111c9f commit 336aa51

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

doc/src/sgml/bgworker.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ typedef struct BackgroundWorker
9898
<term><literal>BGWORKER_BACKEND_DATABASE_CONNECTION</literal></term>
9999
<listitem>
100100
<para>
101-
<indexterm><primary>BGWORKER_BACKEND_DATABASE_CONNECTION</primary></indexterm>
101+
<indexterm><primary>BGWORKER_BACKEND_&zwsp;DATABASE_CONNECTION</primary></indexterm>
102102
Requests the ability to establish a database connection through which it
103103
can later run transactions and queries. A background worker using
104104
<literal>BGWORKER_BACKEND_DATABASE_CONNECTION</literal> to connect to a

doc/src/sgml/dblink.sgml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,6 @@ SELECT dblink_connect('myconn', 'dbname=postgres options=-csearch_path=');
147147
-- FOREIGN DATA WRAPPER functionality
148148
-- Note: local connection must require password authentication for this to work properly
149149
-- Otherwise, you will receive the following error from dblink_connect():
150-
-- ----------------------------------------------------------------------
151150
-- ERROR: password is required
152151
-- DETAIL: Non-superuser cannot connect if the server does not request a password.
153152
-- HINT: Target server's authentication method must be changed.

doc/src/sgml/information_schema.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@
174174
</sect1>
175175

176176
<sect1 id="infoschema-administrable-role-authorizations">
177-
<title><literal>administrable_role_authorizations</literal></title>
177+
<title><literal>administrable_role_&zwsp;authorizations</literal></title>
178178

179179
<para>
180180
The view <literal>administrable_role_authorizations</literal>
@@ -888,7 +888,7 @@
888888
</sect1>
889889

890890
<sect1 id="infoschema-collation-character-set-applicab"> <!-- max 44 characters -->
891-
<title><literal>collation_character_set_applicability</literal></title>
891+
<title><literal>collation_character_set_&zwsp;applicability</literal></title>
892892

893893
<para>
894894
The view <literal>collation_character_set_applicability</literal>

doc/src/sgml/lobj.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -712,7 +712,7 @@ SELECT lo_export(image.raster, '/tmp/motd') FROM image
712712
<example id="lo-example">
713713
<title>Large Objects with <application>libpq</application> Example Program</title>
714714
<programlisting><![CDATA[
715-
/*-------------------------------------------------------------------------
715+
/*-----------------------------------------------------------------
716716
*
717717
* testlo.c
718718
* test using large objects with libpq
@@ -724,7 +724,7 @@ SELECT lo_export(image.raster, '/tmp/motd') FROM image
724724
* IDENTIFICATION
725725
* src/test/examples/testlo.c
726726
*
727-
*-------------------------------------------------------------------------
727+
*-----------------------------------------------------------------
728728
*/
729729
#include <stdio.h>
730730
#include <stdlib.h>

doc/src/sgml/stylesheet-fo.xsl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<xsl:param name="ulink.footnotes" select="1"></xsl:param>
1313
<xsl:param name="use.extensions" select="1"></xsl:param>
1414
<xsl:param name="variablelist.as.blocks" select="1"></xsl:param>
15+
<xsl:param name="orderedlist.label.width">1.5em</xsl:param>
1516

1617
<xsl:attribute-set name="monospace.verbatim.properties"
1718
use-attribute-sets="verbatim.properties monospace.properties">

doc/src/sgml/textsearch.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1891,8 +1891,8 @@ SELECT ts_rewrite('a &amp; b'::tsquery,
18911891
</para>
18921892

18931893
<synopsis>
1894-
tsvector_update_trigger(<replaceable class="parameter">tsvector_column_name</replaceable>, <replaceable class="parameter">config_name</replaceable>, <replaceable class="parameter">text_column_name</replaceable> <optional>, ... </optional>)
1895-
tsvector_update_trigger_column(<replaceable class="parameter">tsvector_column_name</replaceable>, <replaceable class="parameter">config_column_name</replaceable>, <replaceable class="parameter">text_column_name</replaceable> <optional>, ... </optional>)
1894+
tsvector_update_trigger(<replaceable class="parameter">tsvector_column_name</replaceable>,&zwsp; <replaceable class="parameter">config_name</replaceable>, <replaceable class="parameter">text_column_name</replaceable> <optional>, ... </optional>)
1895+
tsvector_update_trigger_column(<replaceable class="parameter">tsvector_column_name</replaceable>,&zwsp; <replaceable class="parameter">config_column_name</replaceable>, <replaceable class="parameter">text_column_name</replaceable> <optional>, ... </optional>)
18961896
</synopsis>
18971897

18981898
<para>

0 commit comments

Comments
 (0)