mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
doc: Fix DocBook XML validity
The main problem is that DocBook SGML allows indexterm elements just
about everywhere, but DocBook XML is stricter. For example, this common
pattern
<varlistentry>
<indexterm>...</indexterm>
<term>...</term>
...
</varlistentry>
needs to be changed to something like
<varlistentry>
<term>...<indexterm>...</indexterm></term>
...
</varlistentry>
See also bb4eefe7bf
.
There is currently nothing in the build system that enforces that things
stay valid, because that requires additional tools and will receive
separate consideration.
This commit is contained in:
@ -788,12 +788,12 @@ su - postgres
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term><option>--with-openssl</option>
|
||||
<indexterm>
|
||||
<primary>OpenSSL</primary>
|
||||
<seealso>SSL</seealso>
|
||||
</indexterm>
|
||||
|
||||
<term><option>--with-openssl</option></term>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>
|
||||
Build with support for <acronym>SSL</> (encrypted)
|
||||
@ -1070,10 +1070,11 @@ su - postgres
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term><option>--with-system-tzdata=<replaceable>DIRECTORY</replaceable></option></term>
|
||||
<term><option>--with-system-tzdata=<replaceable>DIRECTORY</replaceable></option>
|
||||
<indexterm>
|
||||
<primary>time zone data</primary>
|
||||
</indexterm>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>
|
||||
<productname>PostgreSQL</> includes its own time zone database,
|
||||
|
Reference in New Issue
Block a user