mirror of
https://github.com/postgres/postgres.git
synced 2025-12-19 17:02:53 +03:00
Remove unnecessary xref endterm attributes and title ids
The endterm attribute is mainly useful when the toolchain does not support automatic link target text generation for a particular situation. In the past, this was required by the man page tools for all reference page links, but that is no longer the case, and it now actually gets in the way of proper automatic link text generation. The only remaining use cases are currently xrefs to refsects.
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
<!--
|
||||
$PostgreSQL: pgsql/doc/src/sgml/ref/prepare_transaction.sgml,v 1.10 2010/01/25 18:23:10 heikki Exp $
|
||||
$PostgreSQL: pgsql/doc/src/sgml/ref/prepare_transaction.sgml,v 1.11 2010/04/03 07:23:02 petere Exp $
|
||||
PostgreSQL documentation
|
||||
-->
|
||||
|
||||
<refentry id="SQL-PREPARE-TRANSACTION">
|
||||
<refmeta>
|
||||
<refentrytitle id="sql-prepare-transaction-title">PREPARE TRANSACTION</refentrytitle>
|
||||
<refentrytitle>PREPARE TRANSACTION</refentrytitle>
|
||||
<manvolnum>7</manvolnum>
|
||||
<refmiscinfo>SQL - Language Statements</refmiscinfo>
|
||||
</refmeta>
|
||||
@@ -39,8 +39,8 @@ PREPARE TRANSACTION <replaceable class="PARAMETER">transaction_id</replaceable>
|
||||
|
||||
<para>
|
||||
Once prepared, a transaction can later be committed or rolled back
|
||||
with <xref linkend="sql-commit-prepared" endterm="sql-commit-prepared-title">
|
||||
or <xref linkend="sql-rollback-prepared" endterm="sql-rollback-prepared-title">,
|
||||
with <xref linkend="sql-commit-prepared">
|
||||
or <xref linkend="sql-rollback-prepared">,
|
||||
respectively. Those commands can be issued from any session, not
|
||||
only the one that executed the original transaction.
|
||||
</para>
|
||||
@@ -93,7 +93,7 @@ PREPARE TRANSACTION <replaceable class="PARAMETER">transaction_id</replaceable>
|
||||
|
||||
<para>
|
||||
This command must be used inside a transaction block. Use <xref
|
||||
linkend="sql-begin" endterm="sql-begin-title"> to start one.
|
||||
linkend="sql-begin"> to start one.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
@@ -161,8 +161,8 @@ PREPARE TRANSACTION 'foobar';
|
||||
<title>See Also</title>
|
||||
|
||||
<simplelist type="inline">
|
||||
<member><xref linkend="sql-commit-prepared" endterm="sql-commit-prepared-title"></member>
|
||||
<member><xref linkend="sql-rollback-prepared" endterm="sql-rollback-prepared-title"></member>
|
||||
<member><xref linkend="sql-commit-prepared"></member>
|
||||
<member><xref linkend="sql-rollback-prepared"></member>
|
||||
</simplelist>
|
||||
</refsect1>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user