summaryrefslogtreecommitdiff
path: root/doc/src/sgml/lobj.sgml
diff options
context:
space:
mode:
authorPeter Eisentraut2017-11-23 14:39:47 +0000
committerPeter Eisentraut2017-11-23 14:44:28 +0000
commit3c49c6facb22cdea979f5d1465ba53f972d32163 (patch)
treea7da6a95fdb79a3fa313fb74afda16b746f8704e /doc/src/sgml/lobj.sgml
parent2f8d6369e60a244f28e0c93b8a02e73758322915 (diff)
Convert documentation to DocBook XML
Since some preparation work had already been done, the only source changes left were changing empty-element tags like <xref linkend="foo"> to <xref linkend="foo"/>, and changing the DOCTYPE. The source files are still named *.sgml, but they are actually XML files now. Renaming could be considered later. In the build system, the intermediate step to convert from SGML to XML is removed. Everything is build straight from the source files again. The OpenSP (or the old SP) package is no longer needed. The documentation toolchain instructions are updated and are much simpler now. Peter Eisentraut, Alexander Lakhin, Jürgen Purtz
Diffstat (limited to 'doc/src/sgml/lobj.sgml')
-rw-r--r--doc/src/sgml/lobj.sgml14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/src/sgml/lobj.sgml b/doc/src/sgml/lobj.sgml
index e11c8e0f8b1..086cb8dbe8d 100644
--- a/doc/src/sgml/lobj.sgml
+++ b/doc/src/sgml/lobj.sgml
@@ -83,8 +83,8 @@
<para>
As of <productname>PostgreSQL</productname> 9.0, large objects have an owner
and a set of access permissions, which can be managed using
- <xref linkend="sql-grant"> and
- <xref linkend="sql-revoke">.
+ <xref linkend="sql-grant"/> and
+ <xref linkend="sql-revoke"/>.
<literal>SELECT</literal> privileges are required to read a large
object, and
<literal>UPDATE</literal> privileges are required to write or
@@ -92,7 +92,7 @@
Only the large object's owner (or a database superuser) can delete,
comment on, or change the owner of a large object.
To adjust this behavior for compatibility with prior releases, see the
- <xref linkend="guc-lo-compat-privileges"> run-time parameter.
+ <xref linkend="guc-lo-compat-privileges"/> run-time parameter.
</para>
</sect1>
@@ -301,7 +301,7 @@ int lo_open(PGconn *conn, Oid lobjId, int mode);
checks were instead performed at the first actual read or write call
using the descriptor.)
These privilege checks can be disabled with the
- <xref linkend="guc-lo-compat-privileges"> run-time parameter.
+ <xref linkend="guc-lo-compat-privileges"/> run-time parameter.
</para>
<para>
@@ -539,7 +539,7 @@ int lo_unlink(PGconn *conn, Oid lobjId);
<para>
Server-side functions tailored for manipulating large objects from SQL are
- listed in <xref linkend="lo-funcs-table">.
+ listed in <xref linkend="lo-funcs-table"/>.
</para>
<table id="lo-funcs-table">
@@ -656,7 +656,7 @@ SELECT lo_export(image.raster, '/tmp/motd') FROM image
<caution>
<para>
- It is possible to <xref linkend="sql-grant"> use of the
+ It is possible to <xref linkend="sql-grant"/> use of the
server-side <function>lo_import</function>
and <function>lo_export</function> functions to non-superusers, but
careful consideration of the security implications is required. A
@@ -688,7 +688,7 @@ SELECT lo_export(image.raster, '/tmp/motd') FROM image
<title>Example Program</title>
<para>
- <xref linkend="lo-example"> is a sample program which shows how the large object
+ <xref linkend="lo-example"/> is a sample program which shows how the large object
interface
in <application>libpq</application> can be used. Parts of the program are
commented out but are left in the source for the reader's