mirror of
https://github.com/postgres/postgres.git
synced 2025-07-15 19:21:59 +03:00
doc: Improve DocBook XML validity
DocBook XML is superficially compatible with DocBook SGML but has a slightly stricter DTD that we have been violating in a few cases. Although XSLT doesn't care whether the document is valid, the style sheets don't necessarily process invalid documents correctly, so we need to work toward fixing this. This first commit moves the indexterms in refentry elements to an allowed position. It has no impact on the output.
This commit is contained in:
@ -1,5 +1,9 @@
|
||||
<!-- doc/src/sgml/ref/set_session_auth.sgml -->
|
||||
<refentry id="SQL-SET-SESSION-AUTHORIZATION">
|
||||
<indexterm zone="sql-set-session-authorization">
|
||||
<primary>SET SESSION AUTHORIZATION</primary>
|
||||
</indexterm>
|
||||
|
||||
<refmeta>
|
||||
<refentrytitle>SET SESSION AUTHORIZATION</refentrytitle>
|
||||
<manvolnum>7</manvolnum>
|
||||
@ -11,10 +15,6 @@
|
||||
<refpurpose>set the session user identifier and the current user identifier of the current session</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
<indexterm zone="sql-set-session-authorization">
|
||||
<primary>SET SESSION AUTHORIZATION</primary>
|
||||
</indexterm>
|
||||
|
||||
<refsynopsisdiv>
|
||||
<synopsis>
|
||||
SET [ SESSION | LOCAL ] SESSION AUTHORIZATION <replaceable class="parameter">user_name</replaceable>
|
||||
|
Reference in New Issue
Block a user