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

Commit 351a0c1

Browse files
committed
Replace ASCII-quotes with proper markup.
1 parent 9f990a7 commit 351a0c1

Some content is hidden

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

58 files changed

+303
-301
lines changed

doc/src/sgml/arch-pg.sgml

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ From that point on, the frontend process and the backend
7373
"superuser."
7474
Note that the <ProductName>Postgres</ProductName> superuser does not
7575
have to be a special user (e.g., a user named
76-
"postgres"), although many systems are installed that way.
76+
<literal>postgres</literal>), although many systems are installed that way.
7777
Furthermore, the <ProductName>Postgres</ProductName> superuser should
78-
definitely not be the Unix superuser, "root"! In any
78+
definitely not be the Unix superuser, <literal>root</literal>! In any
7979
case, all files relating to a database should belong to
8080
this <ProductName>Postgres</ProductName> superuser.
8181
</Para>

doc/src/sgml/catalogs.sgml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
22
Documentation of the system catalogs, directed toward PostgreSQL developers
3-
$Header: /cvsroot/pgsql/doc/src/sgml/catalogs.sgml,v 2.24 2001/09/10 05:46:41 ishii Exp $
3+
$Header: /cvsroot/pgsql/doc/src/sgml/catalogs.sgml,v 2.25 2001/09/13 15:55:22 petere Exp $
44
-->
55

66
<chapter id="catalogs">
@@ -1737,7 +1737,7 @@
17371737
to assume very much about what sort of statistics it stores. Only
17381738
extremely general statistics (such as NULL-ness) are given dedicated
17391739
columns in <structname>pg_statistic</structname>. Everything else
1740-
is stored in "slots", which are groups of associated columns whose
1740+
is stored in <quote>slots</quote>, which are groups of associated columns whose
17411741
content is identified by a code number in one of the slot's columns.
17421742
For more information see
17431743
<filename>src/include/catalog/pg_statistic.h</filename>.
@@ -1803,7 +1803,7 @@
18031803
<entry><type>int2</type></entry>
18041804
<entry></entry>
18051805
<entry>A code number indicating the kind of statistics stored in the Nth
1806-
"slot" of the <structname>pg_statistic</structname> row.
1806+
<quote>slot</quote> of the <structname>pg_statistic</structname> row.
18071807
</entry>
18081808
</row>
18091809

@@ -1812,7 +1812,7 @@
18121812
<entry><type>oid</type></entry>
18131813
<entry>pg_operator.oid</entry>
18141814
<entry>An operator used to derive the statistics stored in the
1815-
Nth "slot". For example, a histogram slot would show the "&lt;"
1815+
Nth <quote>slot</quote>. For example, a histogram slot would show the <literal>&lt;</literal>
18161816
operator that defines the sort order of the data.
18171817
</entry>
18181818
</row>
@@ -1822,7 +1822,7 @@
18221822
<entry><type>float4[]</type></entry>
18231823
<entry></entry>
18241824
<entry>Numerical statistics of the appropriate kind for the Nth
1825-
"slot", or NULL if the slot kind does not involve numerical values.
1825+
<quote>slot</quote>, or NULL if the slot kind does not involve numerical values.
18261826
</entry>
18271827
</row>
18281828

@@ -1831,7 +1831,7 @@
18311831
<entry><type>text[]</type></entry>
18321832
<entry></entry>
18331833
<entry>Column data values of the appropriate kind for the Nth
1834-
"slot", or NULL if the slot kind does not store any data values.
1834+
<quote>slot</quote>, or NULL if the slot kind does not store any data values.
18351835
For datatype independence, all column data values are converted
18361836
to external textual form and stored as TEXT datums.
18371837
</entry>

doc/src/sgml/charset.sgml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/charset.sgml,v 2.9 2001/09/09 23:52:12 petere Exp $ -->
1+
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/charset.sgml,v 2.10 2001/09/13 15:55:22 petere Exp $ -->
22

33
<chapter id="charset">
44
<title>Localization</>
@@ -396,7 +396,7 @@ perl: warning: Falling back to the standard locale ("C").
396396
</programlisting>
397397

398398
sets the default encoding to <literal>EUC_JP</literal> (Extended Unix Code for Japanese).
399-
Note that you can use "--encoding" instead of "-E" if you prefer
399+
Note that you can use <option>--encoding</option> instead of <option>-E</option> if you prefer
400400
to type longer option strings.
401401
If no -E or --encoding option is given, the encoding
402402
specified at configure time is used.
@@ -529,7 +529,7 @@ int PQsetClientEncoding(PGconn *<replaceable>conn</replaceable>, const char *<re
529529
int PQclientEncoding(const PGconn *<replaceable>conn</replaceable>)
530530
</programlisting>
531531

532-
Note that it returns the "encoding id," not the encoding symbol string
532+
Note that it returns the encoding id, not the encoding symbol string
533533
such as <literal>EUC_JP</literal>. To convert an encoding id to an encoding symbol, you
534534
can use:
535535

@@ -549,7 +549,7 @@ char *pg_encoding_to_char(int <replaceable>encoding_id</replaceable>)
549549
SET CLIENT_ENCODING TO 'encoding';
550550
</programlisting>
551551

552-
Also you can use SQL92 syntax "SET NAMES" for this purpose:
552+
Also you can use SQL92 syntax <literal>SET NAMES</literal> for this purpose:
553553

554554
<programlisting>
555555
SET NAMES 'encoding';
@@ -801,7 +801,7 @@ Sorry for my Eglish and C code, I'm not native :-)
801801

802802
<listitem>
803803
<para>
804-
A locale such as "<literal>ch</literal>" is correctly sorted
804+
A locale such as <literal>ch</literal> is correctly sorted
805805
only if your system
806806
supports that locale; older systems may not do so but new ones
807807
(e.g. RH6.0) do.

doc/src/sgml/cvs.sgml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/cvs.sgml,v 1.15 2001/09/07 21:36:46 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/cvs.sgml,v 1.16 2001/09/13 15:55:22 petere Exp $
33
CVS code repository
44
Thomas Lockhart
55
-->
@@ -206,8 +206,8 @@ $ cvs checkout -r REL6_4 tc
206206

207207
<para>
208208
When you tag more than one file with the same tag you can think
209-
about the tag as "a curve drawn through a matrix of filename vs.
210-
revision number". Say we have 5 files with the following revisions:
209+
about the tag as <quote>a curve drawn through a matrix of filename vs.
210+
revision number</quote>. Say we have 5 files with the following revisions:
211211

212212
<programlisting>
213213
file1 file2 file3 file4 file5
@@ -220,7 +220,7 @@ $ cvs checkout -r REL6_4 tc
220220
1.6
221221
</programlisting>
222222

223-
then the tag "<literal>TAG</literal>" will reference
223+
then the tag <literal>TAG</literal> will reference
224224
file1-1.2, file2-1.3, etc.
225225

226226
<note>
@@ -487,7 +487,7 @@ pgsql
487487
<para>
488488
<productname>CVSup</productname> was originally developed as a
489489
tool for distributing the <productname>FreeBSD</productname>
490-
source tree. It is available as a "port", and for those running
490+
source tree. It is available as a <quote>port</quote>, and for those running
491491
FreeBSD, if this is not sufficient to tell how to obtain and
492492
install it then please contribute a procedure here.
493493
</para>

doc/src/sgml/datatype.sgml

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/datatype.sgml,v 1.62 2001/09/09 17:21:51 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/datatype.sgml,v 1.63 2001/09/13 15:55:22 petere Exp $
33
-->
44

55
<chapter id="datatype">
@@ -1060,9 +1060,9 @@ SELECT b, char_length(b) FROM test2;
10601060
The ordering of month and day in date input can be ambiguous, therefore a setting
10611061
exists to specify how it should be interpreted in ambiguous cases. The command
10621062
<literal>SET DateStyle TO 'US'</literal> or <literal>SET DateStyle TO 'NonEuropean'</literal>
1063-
specifies the variant "month before day", the command
1063+
specifies the variant <quote>month before day</quote>, the command
10641064
<literal>SET DateStyle TO 'European'</literal> sets the variant
1065-
"day before month". The <literal>ISO</literal> style
1065+
<quote>day before month</quote>. The <literal>ISO</literal> style
10661066
is the default but this default can be changed at compile time or at run time.
10671067
</para>
10681068

@@ -2129,8 +2129,9 @@ SELECT * FROM test1 WHERE a;
21292129
</indexterm>
21302130

21312131
<para>
2132-
Paths are represented by connected sets of points. Paths can be "open", where
2133-
the first and last points in the set are not connected, and "closed",
2132+
Paths are represented by connected sets of points. Paths can be
2133+
<firstterm>open</firstterm>, where
2134+
the first and last points in the set are not connected, and <firstterm>closed</firstterm>,
21342135
where the first and last point are connected. Functions
21352136
<function>popen(p)</function>
21362137
and

doc/src/sgml/datetime.sgml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/datetime.sgml,v 2.20 2001/09/09 17:21:58 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/datetime.sgml,v 2.21 2001/09/13 15:55:22 petere Exp $
33
Date/time details
44
-->
55

@@ -426,7 +426,7 @@ Date/time details
426426
interpreted as Australian timezone names. Without this option,
427427
<literal>CST</literal> and <literal>EST</literal> are taken as
428428
American timezone names, while <literal>SAT</literal> is interpreted as a
429-
noise word indicating "<literal>Saturday</literal>".
429+
noise word indicating <literal>Saturday</literal>.
430430

431431
<table tocentry="1">
432432
<title><productname>Postgres</productname> Australian Time Zones</title>
@@ -494,7 +494,7 @@ Date/time details
494494
<step>
495495
<para>
496496
If the token is numeric only, then it is either a single field
497-
or an ISO-8601 concatenated date (e.g. "19990113" for January 13, 1999)
497+
or an ISO-8601 concatenated date (e.g. <literal>19990113</literal> for January 13, 1999)
498498
or time (e.g. 141516 for 14:15:16).
499499
</para>
500500
</step>
@@ -553,7 +553,7 @@ Date/time details
553553
<para>
554554
If there are more than 4 digits,
555555
and if no other date fields have been previously read, then interpret
556-
as a "concatenated date" (e.g. <literal>19990118</literal>). 8
556+
as a <quote>concatenated date</quote> (e.g. <literal>19990118</literal>). 8
557557
and 6 digits are interpreted as year, month, and day, while 7
558558
and 5 digits are interpreted as year, day of year, respectively.
559559
</para>
@@ -658,7 +658,7 @@ Date/time details
658658
</para>
659659

660660
<para>
661-
"Julian Day" is different from "Julian Date".
661+
<quote>Julian Day</quote> is different from <quote>Julian Date</quote>.
662662

663663
The Julian calendar was introduced by Julius Caesar in 45 BC. It was
664664
in common use until the 1582, when countries started changing to the

doc/src/sgml/docguide.sgml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/docguide.sgml,v 1.32 2001/04/20 15:52:33 thomas Exp $ -->
1+
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/docguide.sgml,v 1.33 2001/09/13 15:55:22 petere Exp $ -->
22

33
<appendix label="DG2" id="docguide">
44
<title>Documentation</title>
@@ -626,7 +626,7 @@ gmake man
626626
<acronym>SGML</acronym> source code to <acronym>RTF</acronym>, then
627627
importing into <productname>ApplixWare-4.4.1</productname>.
628628
After a little cleanup (see the following
629-
section) the output is "printed" to a postscript file.
629+
section) the output is <quote>printed</quote> to a postscript file.
630630
</para>
631631

632632
<!--
@@ -828,7 +828,7 @@ exit
828828
<para>
829829
Not all documents have figures.
830830
You can grep the <acronym>SGML</acronym> source files for
831-
the string "<literal>graphic</literal>" to identify those parts of the
831+
the string <literal>graphic</literal> to identify those parts of the
832832
documentation that may have figures. A few figures are replicated in
833833
various parts of the documentation.
834834
</para>
@@ -866,7 +866,7 @@ exit
866866

867867
<step performance="required">
868868
<para>
869-
"Print" the document
869+
<quote>Print</quote> the document
870870
to a file in Postscript format.
871871
</para>
872872
</step>
@@ -987,14 +987,14 @@ exit
987987

988988
<step performance="required">
989989
<para>
990-
Export the result as "ASCII Layout".
990+
Export the result as <literal>ASCII Layout</literal>.
991991
</para>
992992
</step>
993993

994994
<step performance="required">
995995
<para>
996996
Using emacs or vi, clean up the tabular information in
997-
<filename>INSTALL</filename>. Remove the "mailto"
997+
<filename>INSTALL</filename>. Remove the <literal>mailto</literal>
998998
<acronym>URLs</acronym> for the porting contributors to shrink
999999
the column heights.
10001000
</para>

doc/src/sgml/ecpg.sgml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ecpg.sgml,v 1.22 2001/09/10 21:58:46 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ecpg.sgml,v 1.23 2001/09/13 15:55:22 petere Exp $
33
-->
44

55
<chapter id="ecpg">
@@ -114,7 +114,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/ecpg.sgml,v 1.22 2001/09/10 21:58:46 petere
114114
</para>
115115

116116
<para>
117-
The library has some methods that are "hidden" but may prove
117+
The library has some methods that are <quote>hidden</quote> but may prove
118118
useful.
119119

120120
<itemizedlist>
@@ -316,7 +316,7 @@ struct sqlca
316316
<para>
317317
This means the host variable is of type <type>bool</type> and
318318
the field in the <productname>Postgres</productname> database
319-
is neither 't' nor 'f'.
319+
is neither <literal>'t'</> nor <literal>'f'</>.
320320
</para>
321321
</listitem>
322322
</varlistentry>
@@ -393,7 +393,7 @@ struct sqlca
393393
<term><computeroutput>100, Data not found line %d.</computeroutput></term>
394394
<listitem>
395395
<para>
396-
This is a "normal" error that tells you that what you are querying cannot
396+
This is a <quote>normal</quote> error that tells you that what you are querying cannot
397397
be found or you are at the end of the cursor.
398398
</para>
399399
</listitem>
@@ -421,7 +421,7 @@ struct sqlca
421421
<para>
422422
Oracle version 7.0 on <systemitem class="osname">AIX</> 3 uses OS-supported locks in shared
423423
memory that allow an application designer to link an application
424-
in a "single tasking" way. Instead of starting one client
424+
in a <quote>single tasking</quote> way. Instead of starting one client
425425
process per application process, both the database part and the
426426
application part run in the same process. In later versions of
427427
Oracle this is no longer supported.
@@ -555,7 +555,7 @@ struct sqlca
555555
<term>message 'no data found'</term>
556556
<listitem>
557557
<para>
558-
The error message for "no data" in:
558+
The error message for <quote>no data</quote> in:
559559
<programlisting>
560560
exec sql insert select from statement
561561
</programlisting>

doc/src/sgml/extend.sgml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/extend.sgml,v 1.11 2001/09/10 21:58:46 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/extend.sgml,v 1.12 2001/09/13 15:55:22 petere Exp $
33
-->
44

55
<chapter id="extend">
@@ -67,7 +67,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/extend.sgml,v 1.11 2001/09/10 21:58:46 pete
6767
or shared library) that implements a new type or function
6868
and <productname>Postgres</productname> will load it as required. Code written
6969
in <acronym>SQL</acronym> are even more trivial to add to the server.
70-
This ability to modify its operation "on the fly" makes
70+
This ability to modify its operation <quote>on the fly</quote> makes
7171
<productname>Postgres</productname> uniquely suited for rapid prototyping of new
7272
applications and storage structures.
7373
</para>
@@ -82,7 +82,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/extend.sgml,v 1.11 2001/09/10 21:58:46 pete
8282
Types are divided into base types and composite types.
8383
Base types are those, like <firstterm>int4</firstterm>, that are implemented
8484
in a language such as <productname>C</productname>. They generally correspond to
85-
what are often known as "abstract data types"; <productname>Postgres</productname>
85+
what are often known as <firstterm>abstract data types</firstterm>; <productname>Postgres</productname>
8686
can only operate on such types through methods provided
8787
by the user and only understands the behavior of such
8888
types to the extent that the user describes them.
@@ -94,7 +94,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/extend.sgml,v 1.11 2001/09/10 21:58:46 pete
9494
<productname>Postgres</productname> stores these types
9595
in only one way (within the
9696
file that stores all rows of a table) but the
97-
user can "look inside" at the attributes of these types
97+
user can <quote>look inside</quote> at the attributes of these types
9898
from the query language and optimize their retrieval by
9999
(for example) defining indexes on the attributes.
100100
<productname>Postgres</productname> base types are further

doc/src/sgml/geqo.sgml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/geqo.sgml,v 1.17 2001/05/17 21:50:15 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/geqo.sgml,v 1.18 2001/09/13 15:55:22 petere Exp $
33
Genetic Optimizer
44
-->
55

@@ -114,7 +114,7 @@ Genetic Optimizer
114114
</para>
115115

116116
<para>
117-
According to the "comp.ai.genetic" <acronym>FAQ</acronym> it cannot be stressed too
117+
According to the <systemitem class="resource">comp.ai.genetic</> <acronym>FAQ</acronym> it cannot be stressed too
118118
strongly that a <acronym>GA</acronym> is not a pure random search for a solution to a
119119
problem. A <acronym>GA</acronym> uses stochastic processes, but the result is distinctly
120120
non-random (better than random).

doc/src/sgml/history.sgml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/history.sgml,v 1.14 2001/09/09 17:21:59 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/history.sgml,v 1.15 2001/09/13 15:55:22 petere Exp $
33
-->
44

55
<sect1 id="history">
@@ -40,7 +40,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/history.sgml,v 1.14 2001/09/09 17:21:59 pet
4040

4141
<para>
4242
<productname>Postgres</productname> has undergone several major releases since
43-
then. The first "demoware" system became operational
43+
then. The first <quote>demoware</quote> system became operational
4444
in 1987 and was shown at the 1988 <acronym>ACM-SIGMOD</acronym>
4545
Conference. We released Version 1, described in
4646
<xref endterm="STON90a-full" linkend="STON90a">,
@@ -186,7 +186,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/history.sgml,v 1.14 2001/09/09 17:21:59 pet
186186
<title><productname>PostgreSQL</productname></title>
187187

188188
<para>
189-
By 1996, it became clear that the name "Postgres95" would
189+
By 1996, it became clear that the name <quote>Postgres95</quote> would
190190
not stand the test of time. We chose a new name,
191191
<productname>PostgreSQL</productname>, to reflect the relationship
192192
between the original <productname>Postgres</productname> and the more

0 commit comments

Comments
 (0)