Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 18c1087

Browse files
committed
Make various links point to specific places instead of entire parts
(doubtless these are hangovers from the old separate-books days).
1 parent 0019532 commit 18c1087

File tree

10 files changed

+27
-25
lines changed

10 files changed

+27
-25
lines changed

doc/src/sgml/ddl.sgml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/ddl.sgml,v 1.15 2003/05/07 03:41:31 tgl Exp $ -->
1+
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/ddl.sgml,v 1.16 2003/08/10 01:20:34 tgl Exp $ -->
22

33
<chapter id="ddl">
44
<title>Data Definition</title>
@@ -818,8 +818,8 @@ CREATE TABLE order_items (
818818
columns that are either a primary key or form a unique constraint.
819819
If the foreign key references a unique constraint, there are some
820820
additional possibilities regarding how null values are matched.
821-
These are explained in the <literal>CREATE TABLE</literal> entry
822-
in <xref linkend="reference">.
821+
These are explained in the reference documentation for
822+
<xref linkend="sql-createtable" endterm="sql-createtable-title">.
823823
</para>
824824
</sect2>
825825
</sect1>

doc/src/sgml/dml.sgml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/dml.sgml,v 1.4 2003/03/25 16:15:35 petere Exp $ -->
1+
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/dml.sgml,v 1.5 2003/08/10 01:20:34 tgl Exp $ -->
22

33
<chapter id="dml">
44
<title>Data Manipulation</title>
@@ -88,9 +88,9 @@ INSERT INTO products DEFAULT VALUES;
8888
<tip>
8989
<para>
9090
To do <quote>bulk loads</quote>, that is, inserting a lot of data,
91-
take a look at the <command>COPY</command> command (see
92-
<xref linkend="reference">). It is not as flexible as the
93-
<command>INSERT</command> command, but more efficient.
91+
take a look at the <xref linkend="sql-copy"
92+
endterm="sql-copy-title"> command. It is not as flexible as the
93+
<command>INSERT</command> command, but is more efficient.
9494
</para>
9595
</tip>
9696
</sect1>

doc/src/sgml/func.sgml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.165 2003/08/09 22:50:21 tgl Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.166 2003/08/10 01:20:34 tgl Exp $
33
PostgreSQL documentation
44
-->
55

@@ -7268,7 +7268,7 @@ SELECT pg_type_is_visible('myschema.widget'::regtype);
72687268
linkend="functions-aggregate-table"> shows the built-in aggregate
72697269
functions. The special syntax considerations for aggregate
72707270
functions are explained in <xref linkend="syntax-aggregates">.
7271-
Consult <xref linkend="tutorial"> for additional introductory
7271+
Consult <xref linkend="tutorial-agg"> for additional introductory
72727272
information.
72737273
</para>
72747274

doc/src/sgml/runtime.sgml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.198 2003/07/31 18:36:17 tgl Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.199 2003/08/10 01:20:34 tgl Exp $
33
-->
44

55
<Chapter Id="runtime">
@@ -2425,7 +2425,7 @@ dynamic_library_path = '/usr/local/lib/postgresql:/home/my_project/lib:$libdir'
24252425
behavior you can set this variable to off, but in the long run
24262426
you are encouraged to change your applications to use the
24272427
<literal>ONLY</literal> key word to exclude subtables. See
2428-
<xref linkend="sql"> for more information about inheritance.
2428+
<xref linkend="ddl-inherit"> for more information about inheritance.
24292429
</para>
24302430
</listitem>
24312431
</varlistentry>

doc/src/sgml/sql.sgml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/sql.sgml,v 1.30 2003/03/27 16:51:26 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/sql.sgml,v 1.31 2003/08/10 01:20:34 tgl Exp $
33
-->
44

5-
<chapter id="sql">
5+
<chapter id="sql-intro">
66
<title>SQL</title>
77

88
<abstract>

doc/src/sgml/start.sgml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/start.sgml,v 1.30 2003/06/24 23:26:46 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/start.sgml,v 1.31 2003/08/10 01:20:34 tgl Exp $
33
-->
44

55
<chapter id="tutorial-start">
@@ -397,7 +397,7 @@ mydb=#
397397
command shell. (For more internal commands, type
398398
<literal>\?</literal> at the <command>psql</command> prompt.) The
399399
full capabilities of <command>psql</command> are documented in
400-
<xref linkend="reference">. If <productname>PostgreSQL</> is
400+
<xref linkend="app-psql">. If <productname>PostgreSQL</> is
401401
installed correctly you can also type <literal>man psql</literal>
402402
at the operating system shell prompt to see the documentation. In
403403
this tutorial we will not use these features explicitly, but you

doc/src/sgml/trigger.sgml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/trigger.sgml,v 1.28 2003/04/11 18:41:20 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/trigger.sgml,v 1.29 2003/08/10 01:20:34 tgl Exp $
33
-->
44

55
<chapter id="triggers">
@@ -40,7 +40,8 @@ $Header: /cvsroot/pgsql/doc/src/sgml/trigger.sgml,v 1.28 2003/04/11 18:41:20 pet
4040
</para>
4141

4242
<para>
43-
The syntax for creating triggers is described in <xref linkend="reference">.
43+
The syntax for creating triggers is described in
44+
<xref linkend="sql-createtrigger" endterm="sql-createtrigger-title">.
4445
</para>
4546

4647
<para>

doc/src/sgml/user-manag.sgml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/user-manag.sgml,v 1.20 2003/03/25 16:15:38 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/user-manag.sgml,v 1.21 2003/08/10 01:20:34 tgl Exp $
33
-->
44

55
<chapter id="user-manag">
@@ -203,8 +203,9 @@ ALTER GROUP <replaceable>name</replaceable> DROP USER <replaceable>uname1</repla
203203
<literal>CREATE</>, <literal>TEMPORARY</>, <literal>EXECUTE</>,
204204
<literal>USAGE</>, and <literal>ALL PRIVILEGES</>. For more
205205
information on the different types of privileges support by
206-
<productname>PostgreSQL</productname>, refer to the
207-
<command>GRANT</command> page in <xref linkend="reference">. The right to modify or
206+
<productname>PostgreSQL</productname>, see the
207+
<xref linkend="sql-grant" endterm="sql-grant-title"> reference page.
208+
The right to modify or
208209
destroy an object is always the privilege of the owner only. To
209210
assign privileges, the <command>GRANT</command> command is
210211
used. So, if <literal>joe</literal> is an existing user, and

doc/src/sgml/xfunc.sgml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/xfunc.sgml,v 1.71 2003/08/09 22:50:22 tgl Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/xfunc.sgml,v 1.72 2003/08/10 01:20:34 tgl Exp $
33
-->
44

55
<sect1 id="xfunc">
@@ -2185,7 +2185,7 @@ CREATE FUNCTION test(smallint, double precision) RETURNS ...
21852185
</programlisting>
21862186
it is not immediately clear which function would be called with
21872187
some trivial input like <literal>test(1, 1.5)</literal>. The
2188-
currently implemented resolution rules are described in the
2188+
currently implemented resolution rules are described in
21892189
<xref linkend="typeconv">, but it is unwise to design a system that subtly
21902190
relies on this behavior.
21912191
</para>

doc/src/sgml/xtypes.sgml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/xtypes.sgml,v 1.18 2003/07/27 17:10:06 tgl Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/xtypes.sgml,v 1.19 2003/08/10 01:20:34 tgl Exp $
33
-->
44

55
<sect1 id="xtypes">
@@ -168,8 +168,8 @@ CREATE TYPE complex (
168168
</para>
169169

170170
<para>
171-
For further details see the description of the <command>CREATE
172-
TYPE</command> command in <xref linkend="reference">.
171+
For further details see the description of the
172+
<xref linkend="sql-createtype" endterm="sql-createtype-title"> command.
173173
</para>
174174
</sect1>
175175

0 commit comments

Comments
 (0)