mirror of
https://github.com/postgres/postgres.git
synced 2025-09-02 04:21:28 +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:
@@ -256,10 +256,12 @@ $ sudo semodule -r sepgsql-regtest
|
||||
|
||||
<variablelist>
|
||||
<varlistentry id="guc-sepgsql-permissive" xreflabel="sepgsql.permissive">
|
||||
<term><varname>sepgsql.permissive</> (<type>boolean</type>)</term>
|
||||
<indexterm>
|
||||
<primary><varname>sepgsql.permissive</> configuration parameter</primary>
|
||||
</indexterm>
|
||||
<term>
|
||||
<varname>sepgsql.permissive</> (<type>boolean</type>)
|
||||
<indexterm>
|
||||
<primary><varname>sepgsql.permissive</> configuration parameter</primary>
|
||||
</indexterm>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>
|
||||
This parameter enables <filename>sepgsql</> to function
|
||||
@@ -278,10 +280,12 @@ $ sudo semodule -r sepgsql-regtest
|
||||
|
||||
</varlistentry>
|
||||
<varlistentry id="guc-sepgsql-debug-audit" xreflabel="sepgsql.debug_audit">
|
||||
<term><varname>sepgsql.debug_audit</> (<type>boolean</>)</>
|
||||
<indexterm>
|
||||
<primary><varname>sepgsql.debug_audit</> configuration parameter</>
|
||||
</indexterm>
|
||||
<term>
|
||||
<varname>sepgsql.debug_audit</> (<type>boolean</>)
|
||||
<indexterm>
|
||||
<primary><varname>sepgsql.debug_audit</> configuration parameter</>
|
||||
</indexterm>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>
|
||||
This parameter enables the printing of audit messages regardless of
|
||||
|
Reference in New Issue
Block a user