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

Commit46647cc

Browse files
committed
Replace single-quotes with double-quotes in a few SGML attributes.
Both are valid SGML, but let's be consistent.Author: Peter SmithDiscussion:https://www.postgresql.org/message-id/CAHut%2BPtghjg0SBUTv%3D4Bpcy68d1zD3VAnZ3wX1DQSp39XKD9Sw%40mail.gmail.com
1 parent0a05002 commit46647cc

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

‎doc/src/sgml/libpq.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1736,8 +1736,8 @@ postgresql://%2Fvar%2Flib%2Fpostgresql/dbname
17361736
revocation list (CRL). Certificates listed in this file, if it
17371737
exists, will be rejected while attempting to authenticate the
17381738
server's certificate. If neither
1739-
<xref linkend='libpq-connect-sslcrl'/> nor
1740-
<xref linkend='libpq-connect-sslcrldir'/> is set, this setting is
1739+
<xref linkend="libpq-connect-sslcrl"/> nor
1740+
<xref linkend="libpq-connect-sslcrldir"/> is set, this setting is
17411741
taken as
17421742
<filename>~/.postgresql/root.crl</filename>.
17431743
</para>

‎doc/src/sgml/monitoring.sgml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -372,46 +372,46 @@ postgres 27093 0.0 0.0 30096 2752 ? Ss 11:34 0:00 postgres: ser
372372
<entry><structname>pg_stat_progress_analyze</structname><indexterm><primary>pg_stat_progress_analyze</primary></indexterm></entry>
373373
<entry>One row for each backend (including autovacuum worker processes) running
374374
<command>ANALYZE</command>, showing current progress.
375-
See <xref linkend='analyze-progress-reporting'/>.
375+
See <xref linkend="analyze-progress-reporting"/>.
376376
</entry>
377377
</row>
378378

379379
<row>
380380
<entry><structname>pg_stat_progress_create_index</structname><indexterm><primary>pg_stat_progress_create_index</primary></indexterm></entry>
381381
<entry>One row for each backend running <command>CREATE INDEX</command> or <command>REINDEX</command>, showing
382382
current progress.
383-
See <xref linkend='create-index-progress-reporting'/>.
383+
See <xref linkend="create-index-progress-reporting"/>.
384384
</entry>
385385
</row>
386386

387387
<row>
388388
<entry><structname>pg_stat_progress_vacuum</structname><indexterm><primary>pg_stat_progress_vacuum</primary></indexterm></entry>
389389
<entry>One row for each backend (including autovacuum worker processes) running
390390
<command>VACUUM</command>, showing current progress.
391-
See <xref linkend='vacuum-progress-reporting'/>.
391+
See <xref linkend="vacuum-progress-reporting"/>.
392392
</entry>
393393
</row>
394394

395395
<row>
396396
<entry><structname>pg_stat_progress_cluster</structname><indexterm><primary>pg_stat_progress_cluster</primary></indexterm></entry>
397397
<entry>One row for each backend running
398398
<command>CLUSTER</command> or <command>VACUUM FULL</command>, showing current progress.
399-
See <xref linkend='cluster-progress-reporting'/>.
399+
See <xref linkend="cluster-progress-reporting"/>.
400400
</entry>
401401
</row>
402402

403403
<row>
404404
<entry><structname>pg_stat_progress_basebackup</structname><indexterm><primary>pg_stat_progress_basebackup</primary></indexterm></entry>
405405
<entry>One row for each WAL sender process streaming a base backup,
406406
showing current progress.
407-
See <xref linkend='basebackup-progress-reporting'/>.
407+
See <xref linkend="basebackup-progress-reporting"/>.
408408
</entry>
409409
</row>
410410

411411
<row>
412412
<entry><structname>pg_stat_progress_copy</structname><indexterm><primary>pg_stat_progress_copy</primary></indexterm></entry>
413413
<entry>One row for each backend running <command>COPY</command>, showing current progress.
414-
See <xref linkend='copy-progress-reporting'/>.
414+
See <xref linkend="copy-progress-reporting"/>.
415415
</entry>
416416
</row>
417417
</tbody>
@@ -7055,7 +7055,7 @@ FROM pg_stat_get_backend_idset() AS backendid;
70557055
<structname>pg_stat_progress_cluster</structname>
70567056
because both <command>VACUUM FULL</command> and <command>CLUSTER</command>
70577057
rewrite the table, while regular <command>VACUUM</command> only modifies it
7058-
in place. See <xref linkend='cluster-progress-reporting'/>.
7058+
in place. See <xref linkend="cluster-progress-reporting"/>.
70597059
</para>
70607060

70617061
<table id="pg-stat-progress-vacuum-view" xreflabel="pg_stat_progress_vacuum">

‎doc/src/sgml/ref/create_role.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ in sync when changing the above synopsis!
123123
These clauses determine whether a role will be permitted to
124124
create, alter, drop, comment on, and change the security label for
125125
other roles.
126-
See <xref linkend='role-creation'/> for more details about what
126+
See <xref linkend="role-creation"/> for more details about what
127127
capabilities are conferred by this privilege.
128128
If not specified, <literal>NOCREATEROLE</literal> is the default.
129129
</para>

‎doc/src/sgml/ref/createuser.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ PostgreSQL documentation
4848
Being a superuser implies the ability to bypass all access permission
4949
checks within the database, so superuser access should not be granted
5050
lightly. <literal>CREATEROLE</literal> also conveys
51-
<link linkend='role-creation'>very extensive privileges</link>.
51+
<link linkend="role-creation">very extensive privileges</link>.
5252
</para>
5353

5454
<para>
@@ -254,7 +254,7 @@ PostgreSQL documentation
254254
The new user will be allowed to create, alter, drop, comment on,
255255
change the security label for other roles; that is,
256256
this user will have <literal>CREATEROLE</literal> privilege.
257-
See <xref linkend='role-creation'/> for more details about what
257+
See <xref linkend="role-creation"/> for more details about what
258258
capabilities are conferred by this privilege.
259259
</para>
260260
</listitem>

‎doc/src/sgml/ref/pgbench.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1167,7 +1167,7 @@ pgbench <optional> <replaceable>options</replaceable> </optional> <replaceable>d
11671167
</para>
11681168

11691169
<variablelist>
1170-
<varlistentry id='pgbench-metacommand-gset'>
1170+
<varlistentry id="pgbench-metacommand-gset">
11711171
<term>
11721172
<literal>\gset [<replaceable>prefix</replaceable>]</literal>
11731173
<literal>\aset [<replaceable>prefix</replaceable>]</literal>
@@ -1237,7 +1237,7 @@ SELECT 4 AS four \; SELECT 5 AS five \aset
12371237
</listitem>
12381238
</varlistentry>
12391239

1240-
<varlistentry id='pgbench-metacommand-set'>
1240+
<varlistentry id="pgbench-metacommand-set">
12411241
<term>
12421242
<literal>\set <replaceable>varname</replaceable> <replaceable>expression</replaceable></literal>
12431243
</term>
@@ -1362,7 +1362,7 @@ SELECT 4 AS four \; SELECT 5 AS five \aset
13621362
</listitem>
13631363
</varlistentry>
13641364

1365-
<varlistentry id='pgbench-metacommand-pipeline'>
1365+
<varlistentry id="pgbench-metacommand-pipeline">
13661366
<term><literal>\startpipeline</literal></term>
13671367
<term><literal>\endpipeline</literal></term>
13681368

‎doc/src/sgml/user-manag.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ CREATE USER <replaceable>name</replaceable>;
191191
</varlistentry>
192192

193193
<varlistentry>
194-
<term id='role-creation'>role creation<indexterm><primary>role</primary><secondary>privilege to create</secondary></indexterm></term>
194+
<term id="role-creation">role creation<indexterm><primary>role</primary><secondary>privilege to create</secondary></indexterm></term>
195195
<listitem>
196196
<para>
197197
A role must be explicitly given permission to create more roles

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp