diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2013-03-23 14:06:48 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2013-03-23 14:06:48 -0400 |
commit | 225046199c434d64a0ba3693f23157894c96dfbb (patch) | |
tree | 8f7dc373b533d154e039b5fc9b061811d28a3e2e | |
parent | 8c54115cbbd9e49d75d477be41bd632721b9406d (diff) | |
download | postgresql-225046199c434d64a0ba3693f23157894c96dfbb.tar.gz postgresql-225046199c434d64a0ba3693f23157894c96dfbb.zip |
Don't put <indexterm> before <term> in <varlistentry> items.
Doing that results in a broken index entry in PDF output. We had only
a few like that, which is probably why nobody noticed before.
Standardize on putting the <term> first.
Josh Kupershmidt
-rw-r--r-- | doc/src/sgml/config.sgml | 17 | ||||
-rw-r--r-- | doc/src/sgml/libpq.sgml | 2 |
2 files changed, 8 insertions, 11 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 039fe397e07..1e575b26605 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -1324,10 +1324,10 @@ SET ENABLE_SEQSCAN TO OFF; <variablelist> <varlistentry id="guc-fsync" xreflabel="fsync"> + <term><varname>fsync</varname> (<type>boolean</type>)</term> <indexterm> <primary><varname>fsync</> configuration parameter</primary> </indexterm> - <term><varname>fsync</varname> (<type>boolean</type>)</term> <listitem> <para> If this parameter is on, the <productname>PostgreSQL</> server @@ -1474,10 +1474,10 @@ SET ENABLE_SEQSCAN TO OFF; </varlistentry> <varlistentry id="guc-full-page-writes" xreflabel="full_page_writes"> + <term><varname>full_page_writes</varname> (<type>boolean</type>)</term> <indexterm> <primary><varname>full_page_writes</> configuration parameter</primary> </indexterm> - <term><varname>full_page_writes</varname> (<type>boolean</type>)</term> <listitem> <para> When this parameter is on, the <productname>PostgreSQL</> server @@ -2093,6 +2093,7 @@ archive_command = 'copy "%p" "C:\\server\\archivedir\\%f"' # Windows <variablelist> <varlistentry id="guc-geqo" xreflabel="geqo"> + <term><varname>geqo</varname> (<type>boolean</type>)</term> <indexterm> <primary>genetic query optimization</primary> </indexterm> @@ -2103,7 +2104,6 @@ archive_command = 'copy "%p" "C:\\server\\archivedir\\%f"' # Windows <indexterm> <primary><varname>geqo</> configuration parameter</primary> </indexterm> - <term><varname>geqo</varname> (<type>boolean</type>)</term> <listitem> <para> Enables or disables genetic query optimization. @@ -3975,13 +3975,13 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; </varlistentry> <varlistentry id="guc-default-transaction-isolation" xreflabel="default_transaction_isolation"> + <term><varname>default_transaction_isolation</varname> (<type>enum</type>)</term> <indexterm> <primary>transaction isolation level</primary> </indexterm> <indexterm> <primary><varname>default_transaction_isolation</> configuration parameter</primary> </indexterm> - <term><varname>default_transaction_isolation</varname> (<type>enum</type>)</term> <listitem> <para> Each SQL transaction has an isolation level, which can be @@ -4001,14 +4001,13 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; </varlistentry> <varlistentry id="guc-default-transaction-read-only" xreflabel="default_transaction_read_only"> + <term><varname>default_transaction_read_only</varname> (<type>boolean</type>)</term> <indexterm> <primary>read-only transaction</primary> </indexterm> <indexterm> <primary><varname>default_transaction_read_only</> configuration parameter</primary> </indexterm> - - <term><varname>default_transaction_read_only</varname> (<type>boolean</type>)</term> <listitem> <para> A read-only SQL transaction cannot alter non-temporary tables. @@ -4265,6 +4264,7 @@ SET XML OPTION { DOCUMENT | CONTENT }; </varlistentry> <varlistentry id="guc-extra-float-digits" xreflabel="extra_float_digits"> + <term><varname>extra_float_digits</varname> (<type>integer</type>)</term> <indexterm> <primary>significant digits</primary> </indexterm> @@ -4275,8 +4275,6 @@ SET XML OPTION { DOCUMENT | CONTENT }; <indexterm> <primary><varname>extra_float_digits</> configuration parameter</primary> </indexterm> - - <term><varname>extra_float_digits</varname> (<type>integer</type>)</term> <listitem> <para> This parameter adjusts the number of digits displayed for @@ -4546,6 +4544,7 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir' <variablelist> <varlistentry id="guc-deadlock-timeout" xreflabel="deadlock_timeout"> + <term><varname>deadlock_timeout</varname> (<type>integer</type>)</term> <indexterm> <primary>deadlock</primary> <secondary>timeout during</secondary> @@ -4557,8 +4556,6 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir' <indexterm> <primary><varname>deadlock_timeout</> configuration parameter</primary> </indexterm> - - <term><varname>deadlock_timeout</varname> (<type>integer</type>)</term> <listitem> <para> This is the amount of time, in milliseconds, to wait on a lock diff --git a/doc/src/sgml/libpq.sgml b/doc/src/sgml/libpq.sgml index 061254a22d8..54b6794e13f 100644 --- a/doc/src/sgml/libpq.sgml +++ b/doc/src/sgml/libpq.sgml @@ -2063,11 +2063,11 @@ PGresult *PQdescribePortal(PGconn *conn, const char *portalName); </varlistentry> <varlistentry id="libpq-pg-diag-sqlstate"> + <term><symbol>PG_DIAG_SQLSTATE</></term> <indexterm> <primary>error codes</primary> <secondary>libpq</secondary> </indexterm> - <term><symbol>PG_DIAG_SQLSTATE</></term> <listitem> <para> The SQLSTATE code for the error. The SQLSTATE code identifies |