Skip to content

Commit dccfd74

Browse files
committed
Refine some things to create better looking man pages.
1 parent e58badf commit dccfd74

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+252
-238
lines changed

doc/src/sgml/ref/alter_table.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/ref/alter_table.sgml,v 1.16 2000/12/20 03:19:24 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_table.sgml,v 1.17 2000/12/25 23:15:26 petere Exp $
33
Postgres documentation
44
-->
55

@@ -194,7 +194,7 @@ ALTER TABLE <replaceable class="PARAMETER">table</replaceable>
194194
new column will be ignored. You can use the <literal>SET DEFAULT</literal>
195195
form of <command>ALTER TABLE</command> to set the default later.
196196
(You will also have to update the already existing rows to the
197-
new default value, using <xref linkend="sql-update-title"
197+
new default value, using <xref linkend="sql-update"
198198
endterm="sql-update-title">.)
199199
</para>
200200

doc/src/sgml/ref/begin.sgml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/begin.sgml,v 1.12 2000/10/07 14:16:01 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/begin.sgml,v 1.13 2000/12/25 23:15:26 petere Exp $
33
Postgres documentation
44
-->
55

@@ -105,8 +105,8 @@ NOTICE: BEGIN: already a transaction in progress
105105
<command>BEGIN</command> initiates a user transaction in chained mode,
106106
i.e., all user statements after <command>BEGIN</command> command will
107107
be executed in a single transaction until an explicit
108-
<xref linkend="sql-commit-title" endterm="sql-commit-title">,
109-
<xref linkend="sql-rollback-title" endterm="sql-rollback-title">,
108+
<xref linkend="sql-commit" endterm="sql-commit-title">,
109+
<xref linkend="sql-rollback" endterm="sql-rollback-title">,
110110
or execution abort. Statements in chained mode are executed much faster,
111111
because transaction start/commit requires significant CPU and disk
112112
activity. Execution of multiple statements inside a transaction
@@ -142,15 +142,15 @@ NOTICE: BEGIN: already a transaction in progress
142142
Notes
143143
</title>
144144
<para>
145-
Refer to <xref linkend="sql-lock-title" endterm="sql-lock-title">
145+
Refer to <xref linkend="sql-lock" endterm="sql-lock-title">
146146
for further information
147147
about locking tables inside a transaction.
148148
</para>
149149

150150
<para>
151-
Use <xref linkend="SQL-COMMIT-TITLE" endterm="SQL-COMMIT-TITLE">
151+
Use <xref linkend="SQL-COMMIT" endterm="SQL-COMMIT-TITLE">
152152
or
153-
<xref linkend="SQL-ROLLBACK-TITLE" endterm="SQL-ROLLBACK-TITLE">
153+
<xref linkend="SQL-ROLLBACK" endterm="SQL-ROLLBACK-TITLE">
154154
to terminate a transaction.
155155
</para>
156156
</refsect2>

doc/src/sgml/ref/commit.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/ref/commit.sgml,v 1.9 2000/01/29 16:58:27 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/commit.sgml,v 1.10 2000/12/25 23:15:26 petere Exp $
33
Postgres documentation
44
-->
55

@@ -110,7 +110,7 @@ NOTICE: COMMIT: no transaction in progress
110110
</para>
111111

112112
<para>
113-
Use <xref linkend="SQL-ROLLBACK-TITLE" endterm="SQL-ROLLBACK-TITLE">
113+
Use <xref linkend="SQL-ROLLBACK" endterm="SQL-ROLLBACK-TITLE">
114114
to abort a transaction.
115115
</para>
116116
</refsect2>

doc/src/sgml/ref/create_function.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/ref/create_function.sgml,v 1.20 2000/11/20 20:36:46 tgl Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_function.sgml,v 1.21 2000/12/25 23:15:26 petere Exp $
33
Postgres documentation
44
-->
55

@@ -123,7 +123,7 @@ CREATE FUNCTION <replaceable class="parameter">name</replaceable> ( [ <replaceab
123123
or '<replaceable class="parameter">plname</replaceable>',
124124
where '<replaceable class="parameter">plname</replaceable>'
125125
is the name of a created procedural language. See
126-
<xref linkend="sql-createlanguage-title" endterm="sql-createlanguage-title">
126+
<xref linkend="sql-createlanguage" endterm="sql-createlanguage-title">
127127
for details.
128128
</para>
129129
</listitem>

doc/src/sgml/ref/create_index.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/ref/create_index.sgml,v 1.16 2000/10/05 19:48:17 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_index.sgml,v 1.17 2000/12/25 23:15:26 petere Exp $
33
Postgres documentation
44
-->
55

@@ -228,7 +228,7 @@ ERROR: Cannot create index: 'index_name' already exists.
228228
</para>
229229

230230
<para>
231-
Use <xref linkend="sql-dropindex-title" endterm="sql-dropindex-title">
231+
Use <xref linkend="sql-dropindex" endterm="sql-dropindex-title">
232232
to remove an index.
233233
</para>
234234

doc/src/sgml/ref/create_table.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/ref/create_table.sgml,v 1.36 2000/10/08 13:22:24 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_table.sgml,v 1.37 2000/12/25 23:15:26 petere Exp $
33
Postgres documentation
44
-->
55

@@ -242,7 +242,7 @@ ERROR: DEFAULT: type mismatched
242242
Each new table or class <replaceable class="PARAMETER">table</replaceable>
243243
is automatically created as a type. Therefore, one or more instances
244244
from the class are automatically a type and can be used in
245-
<xref linkend="sql-altertable-title" endterm="sql-altertable-title">
245+
<xref linkend="sql-altertable" endterm="sql-altertable-title">
246246
or other <command>CREATE TABLE</command> statements.
247247
</para>
248248

doc/src/sgml/ref/create_table_as.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/ref/create_table_as.sgml,v 1.3 1999/07/22 15:09:08 thomas Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_table_as.sgml,v 1.4 2000/12/25 23:15:26 petere Exp $
33
Postgres documentation
44
-->
55

@@ -95,7 +95,7 @@ CREATE TABLE <replaceable>table</replaceable> [ (<replaceable>column</replaceabl
9595
<command>CREATE TABLE AS</command> enables a table to be created
9696
from the contents of an existing table.
9797
It is functionality equivalent to
98-
<xref linkend="sql-selectinto-title" endterm="sql-selectinto-title">,
98+
<xref linkend="sql-selectinto" endterm="sql-selectinto-title">,
9999
but with perhaps a more direct syntax.
100100
</para>
101101
</refsect1>

doc/src/sgml/ref/createdb.sgml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/createdb.sgml,v 1.15 2000/11/22 01:41:13 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/createdb.sgml,v 1.16 2000/12/25 23:15:26 petere Exp $
33
Postgres documentation
44
-->
55

@@ -99,7 +99,7 @@ Postgres documentation
9999
<listitem>
100100
<para>
101101
Specifies the alternative database location. See also <xref
102-
linkend="app-initlocation" endterm="app-initlocation-title">.
102+
linkend="app-initlocation">.
103103
</para>
104104
</listitem>
105105
</varlistentry>
@@ -139,7 +139,7 @@ Postgres documentation
139139

140140
The options <literal>-h</literal>, <literal>-p</literal>, <literal>-U</literal>,
141141
<literal>-W</literal>, and <literal>-e</literal> are passed on literally to
142-
<xref linkend="APP-PSQL" endterm="APP-PSQL-title">.
142+
<xref linkend="app-psql">.
143143
</para>
144144
</refsect2>
145145

@@ -177,8 +177,8 @@ Postgres documentation
177177
</variablelist>
178178

179179
If there is an error condition, the backend error message will be displayed.
180-
See <xref linkend="SQL-CREATEDATABASE" endterm="SQL-CREATEDATABASE-title">
181-
and <xref linkend="APP-PSQL" endterm="APP-PSQL-title"> for possibilities.
180+
See <xref linkend="SQL-CREATEDATABASE">
181+
and <xref linkend="APP-PSQL"> for possibilities.
182182
</para>
183183
</refsect2>
184184
</refsynopsisdiv>
@@ -197,7 +197,7 @@ Postgres documentation
197197
<acronym>SQL</acronym> command
198198
<xref linkend="SQL-CREATEDATABASE" endterm="SQL-CREATEDATABASE-title"> via
199199
the <productname>Postgres</productname> interactive terminal
200-
<xref linkend="APP-PSQL" endterm="APP-PSQL-title">. Thus, there is nothing
200+
<xref linkend="APP-PSQL">. Thus, there is nothing
201201
special about creating databases via this or other methods. This means
202202
that the <application>psql</application> must be found by the script and that
203203
a database server is running at the targeted host. Also, any default

doc/src/sgml/ref/createlang.sgml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/createlang.sgml,v 1.14 2000/11/22 01:41:13 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/createlang.sgml,v 1.15 2000/12/25 23:15:26 petere Exp $
33
Postgres documentation
44
-->
55

@@ -132,7 +132,7 @@ Postgres documentation
132132
Most error messages are self-explanatory. If not, run
133133
<application>createlang</application> with the <option>--echo</option>
134134
option and see under the respective <acronym>SQL</acronym> command
135-
for details. Check also under <xref linkend="APP-PSQL" endterm="APP-PSQL-title">
135+
for details. Check also under <xref linkend="APP-PSQL">
136136
for more possibilities.
137137
</para>
138138
</refsect2>
@@ -165,8 +165,7 @@ Postgres documentation
165165
Notes
166166
</title>
167167
<para>
168-
Use <xref linkend="app-droplang" endterm="app-droplang-title">
169-
to remove a language.
168+
Use <xref linkend="app-droplang"> to remove a language.
170169
</para>
171170
</refsect1>
172171

doc/src/sgml/ref/createuser.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/ref/createuser.sgml,v 1.14 2000/11/22 01:41:13 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/createuser.sgml,v 1.15 2000/12/25 23:15:26 petere Exp $
33
Postgres documentation
44
-->
55

@@ -149,7 +149,7 @@ Postgres documentation
149149

150150
<para>
151151
The options <literal>-h</literal>, <literal>-p</literal>, and <literal>-e</literal>,
152-
are passed on literally to <xref linkend="APP-PSQL" endterm="APP-PSQL-title">. The
152+
are passed on literally to <xref linkend="APP-PSQL">. The
153153
<application>psql</application> options <literal>-U</literal> and <literal>-W</literal>
154154
are available as well, but their use can be confusing in this context.
155155
</para>
@@ -183,7 +183,7 @@ Postgres documentation
183183

184184
If there is an error condition, the backend error message will be displayed.
185185
See <xref linkend="SQL-CREATEUSER" endterm="SQL-CREATEUSER-title">
186-
and <xref linkend="APP-PSQL" endterm="APP-PSQL-title"> for possibilities.
186+
and <xref linkend="APP-PSQL"> for possibilities.
187187
</para>
188188
</refsect2>
189189
</refsynopsisdiv>
@@ -205,7 +205,7 @@ Postgres documentation
205205
<acronym>SQL</acronym> command
206206
<xref linkend="SQL-CREATEUSER" endterm="SQL-CREATEUSER-title"> via
207207
the <productname>Postgres</productname> interactive terminal
208-
<xref linkend="APP-PSQL" endterm="APP-PSQL-title">. Thus, there is nothing
208+
<xref linkend="APP-PSQL">. Thus, there is nothing
209209
special about creating users via this or other methods. This means
210210
that the <application>psql</application> must be found by the script and that
211211
a database server is running at the targeted host. Also, any default

0 commit comments

Comments
 (0)