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

Commit fa1640a

Browse files
committed
Fix some cross reference links.
1 parent dccfd74 commit fa1640a

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

doc/src/sgml/arch-dev.sgml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/arch-dev.sgml,v 2.12 2000/12/22 18:57:49 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/arch-dev.sgml,v 2.13 2000/12/26 00:10:37 petere Exp $
33
-->
44

55
<chapter id="overview">
@@ -284,7 +284,7 @@ select s.sname, se.pno
284284
<para>
285285
Figure \ref{parsetree} shows the <firstterm>parse tree</firstterm> built by the
286286
grammar rules and actions given in <filename>gram.y</filename> for the query
287-
given in <xref linkend="simple-select" endterm="simple-select">
287+
given in <xref linkend="simple-select">
288288
(without the <firstterm>operator tree</firstterm> for
289289
the <firstterm>where clause</firstterm> which is shown in figure \ref{where_clause}
290290
because there was not enough space to show both data structures in one
@@ -312,8 +312,8 @@ select s.sname, se.pno
312312

313313
<para>
314314
Figure \ref{where_clause} shows the operator tree built for the
315-
where clause of the SQL query given in example
316-
<xref linkend="simple-select" endterm="simple-select">
315+
where clause of the SQL query given in
316+
<xref linkend="simple-select">
317317
which is attached to the field
318318
<literal>qual</literal> of the <literal>SelectStmt</literal> node. The top node of the
319319
operator tree is an <literal>A_Expr</literal> node representing an <literal>AND</literal>

doc/src/sgml/arch-pg.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,17 +39,17 @@
3939
within a cluster make calls to the library.
4040
The library sends user requests over the network to the
4141
<Application>postmaster</Application>
42-
(<XRef LinkEnd="PGARCH-CONNECTIONS" EndTerm="PGARCH-CONNECTIONS">(a)),
42+
(<XRef LinkEnd="PGARCH-CONNECTIONS">(a)),
4343
which in turn starts a new backend server process
44-
(<XRef LinkEnd="PGARCH-CONNECTIONS" EndTerm="PGARCH-CONNECTIONS">(b))
44+
(<XRef LinkEnd="PGARCH-CONNECTIONS">(b))
4545

4646
<Figure Id="PGARCH-CONNECTIONS">
4747
<Title>How a connection is established</Title>
4848
<Graphic Align="center" FileRef="connections.gif" Format="GIF"></Graphic>
4949
</Figure>
5050

5151
and connects the frontend process to the new server
52-
(<XRef LinkEnd="PGARCH-CONNECTIONS" EndTerm="PGARCH-CONNECTIONS">(c)).
52+
(<XRef LinkEnd="PGARCH-CONNECTIONS">(c)).
5353
From that point on, the frontend process and the backend
5454
server communicate without intervention by the
5555
<Application>postmaster</Application>. Hence, the <Application>postmaster</Application> is always running, waiting

doc/src/sgml/arch.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
applications that wish to access a given database
4040
within a cluster make calls to the library.
4141
The library sends user requests over the network to the
42-
<Application>postmaster</Application> (<XRef LinkEnd="ARCH-CLIENTSERVER" EndTerm="ARCH-CLIENTSERVER">),
42+
<Application>postmaster</Application> (<XRef LinkEnd="ARCH-CLIENTSERVER">),
4343
which in turn starts a new backend server process
4444

4545
<Figure Id="ARCH-CLIENTSERVER">

doc/src/sgml/extend.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/extend.sgml,v 1.7 2000/11/29 20:15:59 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/extend.sgml,v 1.8 2000/12/26 00:10:37 petere Exp $
33
-->
44

55
<chapter id="extend">
@@ -196,7 +196,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/extend.sgml,v 1.7 2000/11/29 20:15:59 peter
196196

197197
The Reference Manual gives a more detailed explanation
198198
of these catalogs and their attributes. However,
199-
<xref endterm="EXTEND-CATALOGS" linkend="EXTEND-CATALOGS">
199+
<xref linkend="EXTEND-CATALOGS">
200200
shows the major entities and their relationships
201201
in the system catalogs. (Attributes that do not refer
202202
to other entities are not shown unless they are part of

doc/src/sgml/libpq++.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/libpq++.sgml,v 1.21 2000/12/22 18:57:49 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/Attic/libpq++.sgml,v 1.22 2000/12/26 00:10:37 petere Exp $
33
-->
44

55
<chapter id="libpqplusplus">
6-
<title>libpq - C++ Binding Library</title>
6+
<title>libpq++ - C++ Binding Library</title>
77

88
<para>
99
<filename>libpq++</filename> is the C++ API to
@@ -57,7 +57,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/Attic/libpq++.sgml,v 1.21 2000/12/22 18:57:
5757
an application program:
5858
<note>
5959
<para>
60-
Refer to the <xref endterm="libpq" linkend="libpq-envars"> for a complete
60+
Refer to <xref linkend="libpq-envars"> for a complete
6161
list of available connection options.
6262
</para>
6363
</note>

doc/src/sgml/xfunc.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/xfunc.sgml,v 1.25 2000/12/22 18:57:50 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/xfunc.sgml,v 1.26 2000/12/26 00:10:37 petere Exp $
33
-->
44

55
<chapter id="xfunc">
@@ -342,7 +342,7 @@ SELECT clean_EMP();
342342
There are currently three procedural languages available in the standard
343343
<productname>Postgres</productname> distribution (PLSQL, PLTCL and
344344
PLPERL), and other languages can be defined.
345-
Refer to <xref linkend="xplang-title" endterm="xplang-title"> for
345+
Refer to <xref linkend="xplang"> for
346346
more information.
347347
</para>
348348
</sect1>
@@ -1200,7 +1200,7 @@ LANGUAGE 'c';
12001200
it can be dynamically loaded into
12011201
<productname>Postgres</productname>
12021202
always requires special flags.
1203-
See <xref linkend="dfunc-title" endterm="dfunc-title">
1203+
See <xref linkend="dfunc">
12041204
for a detailed explanation of how to do it for
12051205
your particular operating system.
12061206
</para>

doc/src/sgml/xindex.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/xindex.sgml,v 1.11 2000/03/31 03:27:41 thomas Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/xindex.sgml,v 1.12 2000/12/26 00:10:37 petere Exp $
33
Postgres documentation
44
-->
55

@@ -15,7 +15,7 @@ Postgres documentation
1515

1616
<para>
1717
Look back at
18-
<xref endterm="EXTEND-CATALOGS" linkend="EXTEND-CATALOGS">.
18+
<xref linkend="EXTEND-CATALOGS">.
1919
The right half shows the catalogs that we must modify in order to tell
2020
<productname>Postgres</productname> how to use a user-defined type and/or
2121
user-defined operators with an index (i.e., <filename>pg_am, pg_amop,

0 commit comments

Comments
 (0)