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

Commit44b3230

Browse files
committed
Use lower-case SGML attribute values
for DocBook XML compatibility
1 parent82c117c commit44b3230

File tree

120 files changed

+1110
-1110
lines changed

Some content is hidden

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

120 files changed

+1110
-1110
lines changed

‎doc/src/sgml/ecpg.sgml

Lines changed: 56 additions & 56 deletions
Large diffs are not rendered by default.

‎doc/src/sgml/func.sgml

Lines changed: 32 additions & 32 deletions
Large diffs are not rendered by default.

‎doc/src/sgml/queries.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1854,7 +1854,7 @@ SELECT <replaceable>select_list</replaceable>
18541854
that can be used in a query without having to actually create and populate
18551855
a table on-disk. The syntax is
18561856
<synopsis>
1857-
VALUES ( <replaceable class="PARAMETER">expression</replaceable> [, ...] ) [, ...]
1857+
VALUES ( <replaceable class="parameter">expression</replaceable> [, ...] ) [, ...]
18581858
</synopsis>
18591859
Each parenthesized list of expressions generates a row in the table.
18601860
The lists must all have the same number of elements (i.e., the number

‎doc/src/sgml/ref/alter_database.sgml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,24 +21,24 @@ PostgreSQL documentation
2121

2222
<refsynopsisdiv>
2323
<synopsis>
24-
ALTER DATABASE <replaceable class="PARAMETER">name</replaceable> [ [ WITH ] <replaceable class="PARAMETER">option</replaceable> [ ... ] ]
24+
ALTER DATABASE <replaceable class="parameter">name</replaceable> [ [ WITH ] <replaceable class="parameter">option</replaceable> [ ... ] ]
2525

26-
<phrase>where <replaceable class="PARAMETER">option</replaceable> can be:</phrase>
26+
<phrase>where <replaceable class="parameter">option</replaceable> can be:</phrase>
2727

28-
ALLOW_CONNECTIONS <replaceable class="PARAMETER">allowconn</replaceable>
29-
CONNECTION LIMIT <replaceable class="PARAMETER">connlimit</replaceable>
30-
IS_TEMPLATE <replaceable class="PARAMETER">istemplate</replaceable>
28+
ALLOW_CONNECTIONS <replaceable class="parameter">allowconn</replaceable>
29+
CONNECTION LIMIT <replaceable class="parameter">connlimit</replaceable>
30+
IS_TEMPLATE <replaceable class="parameter">istemplate</replaceable>
3131

32-
ALTER DATABASE <replaceable class="PARAMETER">name</replaceable> RENAME TO <replaceable>new_name</replaceable>
32+
ALTER DATABASE <replaceable class="parameter">name</replaceable> RENAME TO <replaceable>new_name</replaceable>
3333

34-
ALTER DATABASE <replaceable class="PARAMETER">name</replaceable> OWNER TO { <replaceable>new_owner</replaceable> | CURRENT_USER | SESSION_USER }
34+
ALTER DATABASE <replaceable class="parameter">name</replaceable> OWNER TO { <replaceable>new_owner</replaceable> | CURRENT_USER | SESSION_USER }
3535

36-
ALTER DATABASE <replaceable class="PARAMETER">name</replaceable> SET TABLESPACE <replaceable class="PARAMETER">new_tablespace</replaceable>
36+
ALTER DATABASE <replaceable class="parameter">name</replaceable> SET TABLESPACE <replaceable class="parameter">new_tablespace</replaceable>
3737

38-
ALTER DATABASE <replaceable class="PARAMETER">name</replaceable> SET <replaceable>configuration_parameter</replaceable> { TO | = } { <replaceable>value</replaceable> | DEFAULT }
39-
ALTER DATABASE <replaceable class="PARAMETER">name</replaceable> SET <replaceable>configuration_parameter</replaceable> FROM CURRENT
40-
ALTER DATABASE <replaceable class="PARAMETER">name</replaceable> RESET <replaceable>configuration_parameter</replaceable>
41-
ALTER DATABASE <replaceable class="PARAMETER">name</replaceable> RESET ALL
38+
ALTER DATABASE <replaceable class="parameter">name</replaceable> SET <replaceable>configuration_parameter</replaceable> { TO | = } { <replaceable>value</replaceable> | DEFAULT }
39+
ALTER DATABASE <replaceable class="parameter">name</replaceable> SET <replaceable>configuration_parameter</replaceable> FROM CURRENT
40+
ALTER DATABASE <replaceable class="parameter">name</replaceable> RESET <replaceable>configuration_parameter</replaceable>
41+
ALTER DATABASE <replaceable class="parameter">name</replaceable> RESET ALL
4242
</synopsis>
4343
</refsynopsisdiv>
4444

@@ -102,7 +102,7 @@ ALTER DATABASE <replaceable class="PARAMETER">name</replaceable> RESET ALL
102102

103103
<variablelist>
104104
<varlistentry>
105-
<term><replaceable class="PARAMETER">name</replaceable></term>
105+
<term><replaceable class="parameter">name</replaceable></term>
106106
<listitem>
107107
<para>
108108
The name of the database whose attributes are to be altered.

‎doc/src/sgml/ref/alter_default_privileges.sgml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -31,55 +31,55 @@ ALTER DEFAULT PRIVILEGES
3131
GRANT { { SELECT | INSERT | UPDATE | DELETE | TRUNCATE | REFERENCES | TRIGGER }
3232
[, ...] | ALL [ PRIVILEGES ] }
3333
ON TABLES
34-
TO { [ GROUP ] <replaceable class="PARAMETER">role_name</replaceable> | PUBLIC } [, ...] [ WITH GRANT OPTION ]
34+
TO { [ GROUP ] <replaceable class="parameter">role_name</replaceable> | PUBLIC } [, ...] [ WITH GRANT OPTION ]
3535

3636
GRANT { { USAGE | SELECT | UPDATE }
3737
[, ...] | ALL [ PRIVILEGES ] }
3838
ON SEQUENCES
39-
TO { [ GROUP ] <replaceable class="PARAMETER">role_name</replaceable> | PUBLIC } [, ...] [ WITH GRANT OPTION ]
39+
TO { [ GROUP ] <replaceable class="parameter">role_name</replaceable> | PUBLIC } [, ...] [ WITH GRANT OPTION ]
4040

4141
GRANT { EXECUTE | ALL [ PRIVILEGES ] }
4242
ON FUNCTIONS
43-
TO { [ GROUP ] <replaceable class="PARAMETER">role_name</replaceable> | PUBLIC } [, ...] [ WITH GRANT OPTION ]
43+
TO { [ GROUP ] <replaceable class="parameter">role_name</replaceable> | PUBLIC } [, ...] [ WITH GRANT OPTION ]
4444

4545
GRANT { USAGE | ALL [ PRIVILEGES ] }
4646
ON TYPES
47-
TO { [ GROUP ] <replaceable class="PARAMETER">role_name</replaceable> | PUBLIC } [, ...] [ WITH GRANT OPTION ]
47+
TO { [ GROUP ] <replaceable class="parameter">role_name</replaceable> | PUBLIC } [, ...] [ WITH GRANT OPTION ]
4848

4949
GRANT { USAGE | CREATE | ALL [ PRIVILEGES ] }
5050
ON SCHEMAS
51-
TO { [ GROUP ] <replaceable class="PARAMETER">role_name</replaceable> | PUBLIC } [, ...] [ WITH GRANT OPTION ]
51+
TO { [ GROUP ] <replaceable class="parameter">role_name</replaceable> | PUBLIC } [, ...] [ WITH GRANT OPTION ]
5252

5353
REVOKE [ GRANT OPTION FOR ]
5454
{ { SELECT | INSERT | UPDATE | DELETE | TRUNCATE | REFERENCES | TRIGGER }
5555
[, ...] | ALL [ PRIVILEGES ] }
5656
ON TABLES
57-
FROM { [ GROUP ] <replaceable class="PARAMETER">role_name</replaceable> | PUBLIC } [, ...]
57+
FROM { [ GROUP ] <replaceable class="parameter">role_name</replaceable> | PUBLIC } [, ...]
5858
[ CASCADE | RESTRICT ]
5959

6060
REVOKE [ GRANT OPTION FOR ]
6161
{ { USAGE | SELECT | UPDATE }
6262
[, ...] | ALL [ PRIVILEGES ] }
6363
ON SEQUENCES
64-
FROM { [ GROUP ] <replaceable class="PARAMETER">role_name</replaceable> | PUBLIC } [, ...]
64+
FROM { [ GROUP ] <replaceable class="parameter">role_name</replaceable> | PUBLIC } [, ...]
6565
[ CASCADE | RESTRICT ]
6666

6767
REVOKE [ GRANT OPTION FOR ]
6868
{ EXECUTE | ALL [ PRIVILEGES ] }
6969
ON FUNCTIONS
70-
FROM { [ GROUP ] <replaceable class="PARAMETER">role_name</replaceable> | PUBLIC } [, ...]
70+
FROM { [ GROUP ] <replaceable class="parameter">role_name</replaceable> | PUBLIC } [, ...]
7171
[ CASCADE | RESTRICT ]
7272

7373
REVOKE [ GRANT OPTION FOR ]
7474
{ USAGE | ALL [ PRIVILEGES ] }
7575
ON TYPES
76-
FROM { [ GROUP ] <replaceable class="PARAMETER">role_name</replaceable> | PUBLIC } [, ...]
76+
FROM { [ GROUP ] <replaceable class="parameter">role_name</replaceable> | PUBLIC } [, ...]
7777
[ CASCADE | RESTRICT ]
7878

7979
REVOKE [ GRANT OPTION FOR ]
8080
{ USAGE | CREATE | ALL [ PRIVILEGES ] }
8181
ON SCHEMAS
82-
FROM { [ GROUP ] <replaceable class="PARAMETER">role_name</replaceable> | PUBLIC } [, ...]
82+
FROM { [ GROUP ] <replaceable class="parameter">role_name</replaceable> | PUBLIC } [, ...]
8383
[ CASCADE | RESTRICT ]
8484
</synopsis>
8585
</refsynopsisdiv>

‎doc/src/sgml/ref/alter_domain.sgml

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -23,24 +23,24 @@ PostgreSQL documentation
2323

2424
<refsynopsisdiv>
2525
<synopsis>
26-
ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
27-
{ SET DEFAULT <replaceable class="PARAMETER">expression</replaceable> | DROP DEFAULT }
28-
ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
26+
ALTER DOMAIN <replaceable class="parameter">name</replaceable>
27+
{ SET DEFAULT <replaceable class="parameter">expression</replaceable> | DROP DEFAULT }
28+
ALTER DOMAIN <replaceable class="parameter">name</replaceable>
2929
{ SET | DROP } NOT NULL
30-
ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
31-
ADD <replaceable class="PARAMETER">domain_constraint</replaceable> [ NOT VALID ]
32-
ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
33-
DROP CONSTRAINT [ IF EXISTS ] <replaceable class="PARAMETER">constraint_name</replaceable> [ RESTRICT | CASCADE ]
34-
ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
35-
RENAME CONSTRAINT <replaceable class="PARAMETER">constraint_name</replaceable> TO <replaceable class="PARAMETER">new_constraint_name</replaceable>
36-
ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
37-
VALIDATE CONSTRAINT <replaceable class="PARAMETER">constraint_name</replaceable>
38-
ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
39-
OWNER TO { <replaceable class="PARAMETER">new_owner</replaceable> | CURRENT_USER | SESSION_USER }
40-
ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
41-
RENAME TO <replaceable class="PARAMETER">new_name</replaceable>
42-
ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
43-
SET SCHEMA <replaceable class="PARAMETER">new_schema</replaceable>
30+
ALTER DOMAIN <replaceable class="parameter">name</replaceable>
31+
ADD <replaceable class="parameter">domain_constraint</replaceable> [ NOT VALID ]
32+
ALTER DOMAIN <replaceable class="parameter">name</replaceable>
33+
DROP CONSTRAINT [ IF EXISTS ] <replaceable class="parameter">constraint_name</replaceable> [ RESTRICT | CASCADE ]
34+
ALTER DOMAIN <replaceable class="parameter">name</replaceable>
35+
RENAME CONSTRAINT <replaceable class="parameter">constraint_name</replaceable> TO <replaceable class="parameter">new_constraint_name</replaceable>
36+
ALTER DOMAIN <replaceable class="parameter">name</replaceable>
37+
VALIDATE CONSTRAINT <replaceable class="parameter">constraint_name</replaceable>
38+
ALTER DOMAIN <replaceable class="parameter">name</replaceable>
39+
OWNER TO { <replaceable class="parameter">new_owner</replaceable> | CURRENT_USER | SESSION_USER }
40+
ALTER DOMAIN <replaceable class="parameter">name</replaceable>
41+
RENAME TO <replaceable class="parameter">new_name</replaceable>
42+
ALTER DOMAIN <replaceable class="parameter">name</replaceable>
43+
SET SCHEMA <replaceable class="parameter">new_schema</replaceable>
4444
</synopsis>
4545
</refsynopsisdiv>
4646

@@ -76,7 +76,7 @@ ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
7676
</varlistentry>
7777

7878
<varlistentry>
79-
<term><literal>ADD <replaceable class="PARAMETER">domain_constraint</replaceable> [ NOT VALID ]</literal></term>
79+
<term><literal>ADD <replaceable class="parameter">domain_constraint</replaceable> [ NOT VALID ]</literal></term>
8080
<listitem>
8181
<para>
8282
This form adds a new constraint to a domain using the same syntax as
@@ -171,7 +171,7 @@ ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
171171
<para>
172172
<variablelist>
173173
<varlistentry>
174-
<term><replaceable class="PARAMETER">name</replaceable></term>
174+
<term><replaceable class="parameter">name</replaceable></term>
175175
<listitem>
176176
<para>
177177
The name (possibly schema-qualified) of an existing domain to
@@ -181,7 +181,7 @@ ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
181181
</varlistentry>
182182

183183
<varlistentry>
184-
<term><replaceable class="PARAMETER">domain_constraint</replaceable></term>
184+
<term><replaceable class="parameter">domain_constraint</replaceable></term>
185185
<listitem>
186186
<para>
187187
New domain constraint for the domain.
@@ -190,7 +190,7 @@ ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
190190
</varlistentry>
191191

192192
<varlistentry>
193-
<term><replaceable class="PARAMETER">constraint_name</replaceable></term>
193+
<term><replaceable class="parameter">constraint_name</replaceable></term>
194194
<listitem>
195195
<para>
196196
Name of an existing constraint to drop or rename.
@@ -199,7 +199,7 @@ ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
199199
</varlistentry>
200200

201201
<varlistentry>
202-
<term><replaceable class="PARAMETER">NOT VALID</replaceable></term>
202+
<term><replaceable class="parameter">NOT VALID</replaceable></term>
203203
<listitem>
204204
<para>
205205
Do not verify existing column data for constraint validity.
@@ -230,7 +230,7 @@ ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
230230
</varlistentry>
231231

232232
<varlistentry>
233-
<term><replaceable class="PARAMETER">new_name</replaceable></term>
233+
<term><replaceable class="parameter">new_name</replaceable></term>
234234
<listitem>
235235
<para>
236236
The new name for the domain.
@@ -239,7 +239,7 @@ ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
239239
</varlistentry>
240240

241241
<varlistentry>
242-
<term><replaceable class="PARAMETER">new_constraint_name</replaceable></term>
242+
<term><replaceable class="parameter">new_constraint_name</replaceable></term>
243243
<listitem>
244244
<para>
245245
The new name for the constraint.
@@ -248,7 +248,7 @@ ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
248248
</varlistentry>
249249

250250
<varlistentry>
251-
<term><replaceable class="PARAMETER">new_owner</replaceable></term>
251+
<term><replaceable class="parameter">new_owner</replaceable></term>
252252
<listitem>
253253
<para>
254254
The user name of the new owner of the domain.
@@ -257,7 +257,7 @@ ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
257257
</varlistentry>
258258

259259
<varlistentry>
260-
<term><replaceable class="PARAMETER">new_schema</replaceable></term>
260+
<term><replaceable class="parameter">new_schema</replaceable></term>
261261
<listitem>
262262
<para>
263263
The new schema for the domain.

‎doc/src/sgml/ref/alter_event_trigger.sgml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ PostgreSQL documentation
2121

2222
<refsynopsisdiv>
2323
<synopsis>
24-
ALTER EVENT TRIGGER <replaceable class="PARAMETER">name</replaceable> DISABLE
25-
ALTER EVENT TRIGGER <replaceable class="PARAMETER">name</replaceable> ENABLE [ REPLICA | ALWAYS ]
26-
ALTER EVENT TRIGGER <replaceable class="PARAMETER">name</replaceable> OWNER TO { <replaceable class="PARAMETER">new_owner</replaceable> | CURRENT_USER | SESSION_USER }
27-
ALTER EVENT TRIGGER <replaceable class="PARAMETER">name</replaceable> RENAME TO <replaceable class="PARAMETER">new_name</replaceable>
24+
ALTER EVENT TRIGGER <replaceable class="parameter">name</replaceable> DISABLE
25+
ALTER EVENT TRIGGER <replaceable class="parameter">name</replaceable> ENABLE [ REPLICA | ALWAYS ]
26+
ALTER EVENT TRIGGER <replaceable class="parameter">name</replaceable> OWNER TO { <replaceable class="parameter">new_owner</replaceable> | CURRENT_USER | SESSION_USER }
27+
ALTER EVENT TRIGGER <replaceable class="parameter">name</replaceable> RENAME TO <replaceable class="parameter">new_name</replaceable>
2828
</synopsis>
2929
</refsynopsisdiv>
3030

@@ -46,7 +46,7 @@ ALTER EVENT TRIGGER <replaceable class="PARAMETER">name</replaceable> RENAME TO
4646

4747
<variablelist>
4848
<varlistentry>
49-
<term><replaceable class="PARAMETER">name</replaceable></term>
49+
<term><replaceable class="parameter">name</replaceable></term>
5050
<listitem>
5151
<para>
5252
The name of an existing trigger to alter.
@@ -55,7 +55,7 @@ ALTER EVENT TRIGGER <replaceable class="PARAMETER">name</replaceable> RENAME TO
5555
</varlistentry>
5656

5757
<varlistentry>
58-
<term><replaceable class="PARAMETER">new_owner</replaceable></term>
58+
<term><replaceable class="parameter">new_owner</replaceable></term>
5959
<listitem>
6060
<para>
6161
The user name of the new owner of the event trigger.
@@ -64,7 +64,7 @@ ALTER EVENT TRIGGER <replaceable class="PARAMETER">name</replaceable> RENAME TO
6464
</varlistentry>
6565

6666
<varlistentry>
67-
<term><replaceable class="PARAMETER">new_name</replaceable></term>
67+
<term><replaceable class="parameter">new_name</replaceable></term>
6868
<listitem>
6969
<para>
7070
The new name of the event trigger.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp