Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit3c879e3

Browse files
committed
Add some more index entries.
1 parent3a306ee commit3c879e3

15 files changed

+185
-68
lines changed

‎doc/src/sgml/backup.sgml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/backup.sgml,v 2.17 2001/10/04 04:46:43 momjian Exp $ -->
1+
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/backup.sgml,v 2.18 2001/11/12 19:19:39 petere Exp $ -->
22
<chapter id="backup">
33
<title>Backup and Restore</title>
44

5+
<indexterm zone="backup"><primary>backup</></>
6+
57
<para>
68
As everything that contains valuable data, <productname>Postgres</>
79
databases should be backed up regularly. While the procedure is
@@ -363,6 +365,7 @@ tar -cf backup.tar /usr/local/pgsql/data
363365

364366
<sect1 id="migration">
365367
<title>Migration between releases</title>
368+
<indexterm zone="migration"><primary>upgrading</></>
366369

367370
<para>
368371
As a general rule, the internal data storage format is subject to

‎doc/src/sgml/charset.sgml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/charset.sgml,v 2.13 2001/10/31 20:35:01 petere Exp $ -->
1+
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/charset.sgml,v 2.14 2001/11/12 19:19:39 petere Exp $ -->
22

33
<chapter id="charset">
44
<title>Localization</>
@@ -49,6 +49,8 @@
4949
<sect1 id="locale">
5050
<title>Locale Support</title>
5151

52+
<indexterm zone="locale"><primary>locale</></>
53+
5254
<para>
5355
<firstterm>Locale</> support refers to an application respecting
5456
cultural preferences regarding alphabets, sorting, number
@@ -171,6 +173,7 @@ export LANG=sv_SE
171173
<listitem>
172174
<para>
173175
Sort order in <command>ORDER BY</> queries.
176+
<indexterm><primary>ORDER BY</></>
174177
</para>
175178
</listitem>
176179

@@ -243,6 +246,8 @@ perl: warning: Falling back to the standard locale ("C").
243246
<sect1 id="multibyte">
244247
<title>Multibyte Support</title>
245248

249+
<indexterm zone="multibyte"><primary>multibyte</></>
250+
246251
<note>
247252
<title>Author</title>
248253

@@ -586,6 +591,8 @@ RESET CLIENT_ENCODING;
586591
<sect2>
587592
<title>About Unicode</title>
588593

594+
<indexterm><primary>Unicode</></>
595+
589596
<para>
590597
An automatic encoding translation between Unicode and other
591598
encodings has been supported since PostgreSQL 7.1.

‎doc/src/sgml/client-auth.sgml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/client-auth.sgml,v 1.25 2001/11/1202:35:16 momjian Exp $ -->
1+
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/client-auth.sgml,v 1.26 2001/11/1219:19:39 petere Exp $ -->
22

33
<chapter id="client-authentication">
44
<title>Client Authentication</title>
@@ -423,12 +423,15 @@ host all 192.168.0.0 255.255.0.0 ident omicron
423423
The following describes the authentication methods in detail.
424424
</para>
425425

426-
<sect2>
426+
<sect2 id="auth-password">
427427
<title>Password authentication</title>
428428

429429
<indexterm>
430430
<primary>password</primary>
431431
</indexterm>
432+
<indexterm>
433+
<primary>MD5</>
434+
</indexterm>
432435

433436
<para>
434437
<productname>Postgres</> database passwords are separate from any

‎doc/src/sgml/dfunc.sgml

Lines changed: 30 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/dfunc.sgml,v 1.15 2001/10/26 19:58:12 tgl Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/dfunc.sgml,v 1.16 2001/11/12 19:19:39 petere Exp $
33
-->
44

55
<sect2 id="dfunc">
@@ -25,6 +25,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/dfunc.sgml,v 1.15 2001/10/26 19:58:12 tgl E
2525
</para>
2626

2727
<para>
28+
<indexterm><primary>PIC</></>
2829
Creating shared libraries is generally analoguous to linking
2930
executables: first the source files are compiled into object files,
3031
then the object files are linked together. The object files need to
@@ -57,6 +58,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/dfunc.sgml,v 1.15 2001/10/26 19:58:12 tgl E
5758
<variablelist>
5859
<varlistentry>
5960
<term><productname>BSD/OS</productname></term>
61+
<indexterm><primary>BSD/OS</></>
6062
<listitem>
6163
<para>
6264
The compiler flag to create <acronym>PIC</acronym> is
@@ -74,6 +76,7 @@ ld -shared -o foo.so foo.o
7476

7577
<varlistentry>
7678
<term><productname>FreeBSD</productname></term>
79+
<indexterm><primary>FreeBSD</></>
7780
<listitem>
7881
<para>
7982
The compiler flag to create <acronym>PIC</acronym> is
@@ -91,6 +94,7 @@ gcc -shared -o foo.so foo.o
9194

9295
<varlistentry>
9396
<term><productname>HP-UX</productname></term>
97+
<indexterm><primary>HP-UX</></>
9498
<listitem>
9599
<para>
96100
The compiler flag of the system compiler to create
@@ -117,6 +121,7 @@ ld -b -o foo.sl foo.o
117121

118122
<varlistentry>
119123
<term><productname>Irix</productname></term>
124+
<indexterm><primary>Irix</></>
120125
<listitem>
121126
<para>
122127
<acronym>PIC</acronym> is the default, no special compiler
@@ -132,6 +137,7 @@ ld -shared -o foo.so foo.o
132137

133138
<varlistentry>
134139
<term><productname>Linux</productname></term>
140+
<indexterm><primary>Linux</></>
135141
<listitem>
136142
<para>
137143
The compiler flag to create <acronym>PIC</acronym> is
@@ -150,6 +156,7 @@ cc -shared -o foo.so foo.o
150156

151157
<varlistentry>
152158
<term><productname>NetBSD</productname></term>
159+
<indexterm><primary>NetBSD</></>
153160
<listitem>
154161
<para>
155162
The compiler flag to create <acronym>PIC</acronym> is
@@ -167,6 +174,7 @@ gcc -shared -o foo.so foo.o
167174

168175
<varlistentry>
169176
<term><productname>OpenBSD</productname></term>
177+
<indexterm><primary>OpenBSD</></>
170178
<listitem>
171179
<para>
172180
The compiler flag to create <acronym>PIC</acronym> is
@@ -180,26 +188,9 @@ ld -Bshareable -o foo.so foo.o
180188
</listitem>
181189
</varlistentry>
182190

183-
<varlistentry>
184-
<term>Digital Unix/Tru64 UNIX</term>
185-
186-
<listitem>
187-
<para>
188-
<acronym>PIC</acronym> is the default, so the compilation command
189-
is the usual one. <command>ld</command> with special options is
190-
used to do the linking:
191-
<programlisting>
192-
cc -c foo.c
193-
ld -shared -expect_unresolved '*' -o foo.so foo.o
194-
</programlisting>
195-
The same procedure is used with GCC instead of the system
196-
compiler; no special options are required.
197-
</para>
198-
</listitem>
199-
</varlistentry>
200-
201191
<varlistentry>
202192
<term><productname>Solaris</productname></term>
193+
<indexterm><primary>Solaris</></>
203194
<listitem>
204195
<para>
205196
The compiler flag to create <acronym>PIC</acronym> is
@@ -221,8 +212,28 @@ gcc -G -o foo.so foo.o
221212
</listitem>
222213
</varlistentry>
223214

215+
<varlistentry>
216+
<term>Tru64 UNIX</term>
217+
<indexterm><primary>Tru64 UNIX</></>
218+
<indexterm><primary>Digital UNIX</><see>Tru64 UNIX</></>
219+
<listitem>
220+
<para>
221+
<acronym>PIC</acronym> is the default, so the compilation command
222+
is the usual one. <command>ld</command> with special options is
223+
used to do the linking:
224+
<programlisting>
225+
cc -c foo.c
226+
ld -shared -expect_unresolved '*' -o foo.so foo.o
227+
</programlisting>
228+
The same procedure is used with GCC instead of the system
229+
compiler; no special options are required.
230+
</para>
231+
</listitem>
232+
</varlistentry>
233+
224234
<varlistentry>
225235
<term><productname>Unixware</productname></term>
236+
<indexterm><primary>Unixware</></>
226237
<listitem>
227238
<para>
228239
The compiler flag to create <acronym>PIC</acronym> is <option>-K

‎doc/src/sgml/ecpg.sgml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ecpg.sgml,v 1.29 2001/11/08 23:37:50 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ecpg.sgml,v 1.30 2001/11/12 19:19:39 petere Exp $
33
-->
44

55
<chapter id="ecpg">
@@ -28,6 +28,8 @@ $Header: /cvsroot/pgsql/doc/src/sgml/ecpg.sgml,v 1.29 2001/11/08 23:37:50 petere
2828
<title><application>ecpg</application> - Embedded <acronym>SQL</acronym>
2929
in <acronym>C</acronym></title>
3030

31+
<indexterm zone="ecpg"><primary>embedded SQL</primary><secondary>in C</secondary></indexterm>
32+
3133
<para>
3234
This describes the embedded <acronym>SQL</acronym> package for
3335
<productname>Postgres</productname>. It works with
@@ -538,6 +540,7 @@ struct sqlca
538540
<variablelist>
539541
<varlistentry>
540542
<term>Syntax of FETCH</term>
543+
<indexterm><primary>FETCH</><secondary>embedded SQL</></indexterm>
541544
<listitem>
542545
<para>
543546
The standard syntax for FETCH is:
@@ -546,7 +549,8 @@ struct sqlca
546549
FETCH [direction] [amount] IN|FROM <replaceable>cursor</replaceable>.
547550
</para>
548551
<para>
549-
<application>ORACLE</application>, however, does not use the keywords IN
552+
<indexterm><primary>Oracle</></>
553+
<application>Oracle</application>, however, does not use the keywords IN
550554
or FROM. This feature cannot be added since it would create parsing
551555
conflicts.
552556
</para>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp