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

Commit 7454bd6

Browse files
author
Liudmila Mantrova
committed
DOC: replaced productname instanced with project entity where applicable
1 parent 6193ebc commit 7454bd6

File tree

339 files changed

+2495
-2418
lines changed

Some content is hidden

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

339 files changed

+2495
-2418
lines changed

doc/src/sgml/acronyms.sgml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
<title>Acronyms</title>
55

66
<para>
7-
This is a list of acronyms commonly used in the <productname>&productname;</>
8-
documentation and in discussions about <productname>&productname;</>.
7+
This is a list of acronyms commonly used in the <productname>&project;</>
8+
documentation and in discussions about <productname>&project;</>.
99

1010
<variablelist>
1111

@@ -185,7 +185,7 @@
185185
<term><acronym>ECPG</acronym></term>
186186
<listitem>
187187
<para>
188-
<link linkend="ecpg">Embedded C for &productname;</link>
188+
<link linkend="ecpg">Embedded C for &project;</link>
189189
</para>
190190
</listitem>
191191
</varlistentry>
@@ -281,7 +281,7 @@
281281
<listitem>
282282
<para>
283283
<link linkend="config-setting">Grand Unified Configuration</link>,
284-
the <productname>&productname;</> subsystem that handles server configuration
284+
the <productname>&project;</> subsystem that handles server configuration
285285
</para>
286286
</listitem>
287287
</varlistentry>
@@ -486,7 +486,7 @@
486486
<term><acronym>PGSQL</acronym></term>
487487
<listitem>
488488
<para>
489-
<link linkend="postgres"><productname>&productname;</></link>
489+
<link linkend="postgres"><productname>&project;</></link>
490490
</para>
491491
</listitem>
492492
</varlistentry>
@@ -495,7 +495,7 @@
495495
<term><acronym>PGXS</acronym></term>
496496
<listitem>
497497
<para>
498-
<link linkend="extend-pgxs"><productname>&productname;</> Extension System</link>
498+
<link linkend="extend-pgxs"><productname>&project;</> Extension System</link>
499499
</para>
500500
</listitem>
501501
</varlistentry>

doc/src/sgml/advanced.sgml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
<para>
1010
In the previous chapter we have covered the basics of using
1111
<acronym>SQL</acronym> to store and access your data in
12-
<productname>&productname;</productname>. We will now discuss some
12+
<productname>&project;</productname>. We will now discuss some
1313
more advanced features of <acronym>SQL</acronym> that simplify
1414
management and prevent loss or corruption of your data. Finally,
15-
we will look at some <productname>&productname;</productname>
15+
we will look at some <productname>&project;</productname>
1616
extensions.
1717
</para>
1818

@@ -93,7 +93,7 @@ SELECT * FROM myview;
9393
exists, and then inserting or rejecting the new
9494
<classname>weather</classname> records. This approach has a
9595
number of problems and is very inconvenient, so
96-
<productname>&productname;</productname> can do this for you.
96+
<productname>&project;</productname> can do this for you.
9797
</para>
9898

9999
<para>
@@ -216,7 +216,7 @@ UPDATE branches SET balance = balance + 100.00
216216
</para>
217217

218218
<para>
219-
In <productname>&productname;</>, a transaction is set up by surrounding
219+
In <productname>&project;</>, a transaction is set up by surrounding
220220
the SQL commands of the transaction with
221221
<command>BEGIN</> and <command>COMMIT</> commands. So our banking
222222
transaction would actually look like:
@@ -238,7 +238,7 @@ COMMIT;
238238
</para>
239239

240240
<para>
241-
<productname>&productname;</> actually treats every SQL statement as being
241+
<productname>&project;</> actually treats every SQL statement as being
242242
executed within a transaction. If you do not issue a <command>BEGIN</>
243243
command,
244244
then each individual statement has an implicit <command>BEGIN</> and
@@ -627,10 +627,10 @@ CREATE TABLE capitals (
627627
<structfield>population</>, and <structfield>altitude</>) from its
628628
<firstterm>parent</firstterm>, <classname>cities</classname>. The
629629
type of the column <structfield>name</structfield> is
630-
<type>text</type>, a native <productname>&productname;</productname>
630+
<type>text</type>, a native <productname>&project;</productname>
631631
type for variable length character strings. State capitals have
632632
an extra column, <structfield>state</>, that shows their state. In
633-
<productname>&productname;</productname>, a table can inherit from
633+
<productname>&project;</productname>, a table can inherit from
634634
zero or more other tables.
635635
</para>
636636

@@ -702,7 +702,7 @@ SELECT name, altitude
702702
<title>Conclusion</title>
703703

704704
<para>
705-
<productname>&productname;</productname> has many features not
705+
<productname>&project;</productname> has many features not
706706
touched upon in this tutorial introduction, which has been
707707
oriented toward newer users of <acronym>SQL</acronym>. These
708708
features are discussed in more detail in the remainder of this

doc/src/sgml/amcheck.sgml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -193,20 +193,20 @@ ORDER BY c.relpages DESC LIMIT 10;
193193
<emphasis>indexed</> values might happen to have the same
194194
absolute ordering regardless of the behavioral inconsistency. See
195195
<xref linkend="locale"> and <xref linkend="collation"> for
196-
further details about how <productname>&productname;</> uses
196+
further details about how <productname>&project;</> uses
197197
operating system locales and collations.
198198
</para>
199199
</listitem>
200200
<listitem>
201201
<para>
202202
Corruption caused by hypothetical undiscovered bugs in the
203-
underlying <productname>&productname;</> access method code or sort
203+
underlying <productname>&project;</> access method code or sort
204204
code.
205205
</para>
206206
<para>
207207
Automatic verification of the structural integrity of indexes
208208
plays a role in the general testing of new or proposed
209-
<productname>&productname;</> features that could plausibly allow a
209+
<productname>&project;</> features that could plausibly allow a
210210
logical inconsistency to be introduced. One obvious testing
211211
strategy is to call <filename>amcheck</> functions continuously
212212
when running the standard regression tests. See <xref
@@ -234,7 +234,7 @@ ORDER BY c.relpages DESC LIMIT 10;
234234
and operating system.
235235
</para>
236236
<para>
237-
<productname>&productname;</> does not protect against correctable
237+
<productname>&project;</> does not protect against correctable
238238
memory errors and it is assumed you will operate using RAM that
239239
uses industry standard Error Correcting Codes (ECC) or better
240240
protection. However, ECC memory is typically only immune to

doc/src/sgml/arch-dev.sgml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- doc/src/sgml/arch-dev.sgml -->
22

33
<chapter id="overview">
4-
<title>Overview of &productname; Internals</title>
4+
<title>Overview of &project; Internals</title>
55

66
<note>
77
<title>Author</title>
@@ -15,11 +15,11 @@
1515

1616
<para>
1717
This chapter gives an overview of the internal structure of the
18-
backend of <productname>&productname;</productname>. After having
18+
backend of <productname>&project;</productname>. After having
1919
read the following sections you should have an idea of how a query
2020
is processed. This chapter does not aim to provide a detailed
2121
description of the internal operation of
22-
<productname>&productname;</productname>, as such a document would be
22+
<productname>&project;</productname>, as such a document would be
2323
very extensive. Rather, this chapter is intended to help the reader
2424
understand the general sequence of operations that occur within the
2525
backend from the point at which a query is received, to the point
@@ -37,7 +37,7 @@
3737
<procedure>
3838
<step>
3939
<para>
40-
A connection from an application program to the <productname>&productname;</productname>
40+
A connection from an application program to the <productname>&project;</productname>
4141
server has to be established. The application program transmits a
4242
query to the server and waits to receive the results sent back by the
4343
server.
@@ -108,7 +108,7 @@
108108

109109
<para>
110110
In the following sections we will cover each of the above listed items
111-
in more detail to give a better understanding of <productname>&productname;</productname>'s internal
111+
in more detail to give a better understanding of <productname>&project;</productname>'s internal
112112
control and data structures.
113113
</para>
114114
</sect1>
@@ -117,7 +117,7 @@
117117
<title>How Connections are Established</title>
118118

119119
<para>
120-
<productname>&productname;</productname> is implemented using a
120+
<productname>&project;</productname> is implemented using a
121121
simple <quote>process per user</> client/server model. In this model
122122
there is one <firstterm>client process</firstterm> connected to
123123
exactly one <firstterm>server process</firstterm>. As we do not
@@ -135,7 +135,7 @@
135135

136136
<para>
137137
The client process can be any program that understands the
138-
<productname>&productname;</productname> protocol described in
138+
<productname>&project;</productname> protocol described in
139139
<xref linkend="protocol">. Many clients are based on the
140140
C-language library <application>libpq</>, but several independent
141141
implementations of the protocol exist, such as the Java
@@ -220,7 +220,7 @@
220220
<para>
221221
The mentioned transformations and compilations are normally done
222222
automatically using the <firstterm>makefiles</firstterm>
223-
shipped with the <productname>&productname;</productname>
223+
shipped with the <productname>&project;</productname>
224224
source distribution.
225225
</para>
226226
</note>
@@ -282,13 +282,13 @@
282282
</sect1>
283283

284284
<sect1 id="rule-system">
285-
<title>The <productname>&productname;</productname> Rule System</title>
285+
<title>The <productname>&project;</productname> Rule System</title>
286286

287287
<para>
288-
<productname>&productname;</productname> supports a powerful
288+
<productname>&project;</productname> supports a powerful
289289
<firstterm>rule system</firstterm> for the specification
290290
of <firstterm>views</firstterm> and ambiguous <firstterm>view updates</firstterm>.
291-
Originally the <productname>&productname;</productname>
291+
Originally the <productname>&project;</productname>
292292
rule system consisted of two implementations:
293293

294294
<itemizedlist>
@@ -346,7 +346,7 @@
346346
space. In particular, this occurs when executing queries
347347
involving large numbers of join operations. In order to determine
348348
a reasonable (not necessarily optimal) query plan in a reasonable amount
349-
of time, <productname>&productname;</productname> uses a <firstterm>Genetic
349+
of time, <productname>&project;</productname> uses a <firstterm>Genetic
350350
Query Optimizer</firstterm> (see <xref linkend="geqo">) when the number of joins
351351
exceeds a threshold (see <xref linkend="guc-geqo-threshold">).
352352
</para>

doc/src/sgml/array.sgml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</indexterm>
99

1010
<para>
11-
<productname>&productname;</productname> allows columns of a table to be
11+
<productname>&project;</productname> allows columns of a table to be
1212
defined as variable-length multidimensional arrays. Arrays of any
1313
built-in or user-defined base type, enum type, or composite type
1414
can be created.
@@ -80,7 +80,7 @@ CREATE TABLE tictactoe (
8080
<programlisting>
8181
pay_by_quarter integer ARRAY,
8282
</programlisting>
83-
As before, however, <productname>&productname;</> does not enforce the
83+
As before, however, <productname>&project;</> does not enforce the
8484
size restriction in any case.
8585
</para>
8686
</sect2>
@@ -107,7 +107,7 @@ CREATE TABLE tictactoe (
107107
where <replaceable>delim</replaceable> is the delimiter character
108108
for the type, as recorded in its <literal>pg_type</literal> entry.
109109
Among the standard data types provided in the
110-
<productname>&productname;</productname> distribution, all use a comma
110+
<productname>&project;</productname> distribution, all use a comma
111111
(<literal>,</>), except for type <type>box</> which uses a semicolon
112112
(<literal>;</>). Each <replaceable>val</replaceable> is
113113
either a constant of the array element type, or a subarray. An example
@@ -221,7 +221,7 @@ SELECT name FROM sal_emp WHERE pay_by_quarter[1] &lt;&gt; pay_by_quarter[2];
221221
</programlisting>
222222

223223
The array subscript numbers are written within square brackets.
224-
By default <productname>&productname;</productname> uses a
224+
By default <productname>&project;</productname> uses a
225225
one-based numbering convention for arrays, that is,
226226
an array of <replaceable>n</> elements starts with <literal>array[1]</literal> and
227227
ends with <literal>array[<replaceable>n</>]</literal>.
@@ -709,7 +709,7 @@ SELECT array_positions(ARRAY[1, 4, 3, 1, 3, 4, 2, 1], 1);
709709
The delimiter character is usually a comma (<literal>,</>) but can be
710710
something else: it is determined by the <literal>typdelim</> setting
711711
for the array's element type. Among the standard data types provided
712-
in the <productname>&productname;</productname> distribution, all use a comma,
712+
in the <productname>&project;</productname> distribution, all use a comma,
713713
except for type <type>box</>, which uses a semicolon (<literal>;</>).
714714
In a multidimensional array, each dimension (row, plane,
715715
cube, etc.) gets its own level of curly braces, and delimiters

0 commit comments

Comments
 (0)