Skip to content

Commit 00d819d

Browse files
committed
doc: Add ACL acronym for "Access Control List"
Five places across the docs use this abbreviation, so let's use a proper acronym entry for it. Per suggestion from me. Author: Joel Jacobson Reviewed-by: Nathan Bossart, David G. Johnston Discussion: https://postgr.es/m/9253b872-dbb1-42a6-a79e-b1e96effc857@app.fastmail.com
1 parent b19db55 commit 00d819d

File tree

4 files changed

+20
-10
lines changed

4 files changed

+20
-10
lines changed

doc/src/sgml/acronyms.sgml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@
99

1010
<variablelist>
1111

12+
<varlistentry>
13+
<term><acronym>ACL</acronym></term>
14+
<listitem>
15+
<para>
16+
<ulink url="https://en.wikipedia.org/wiki/Access-control_list">Access Control List</ulink>
17+
</para>
18+
</listitem>
19+
</varlistentry>
20+
1221
<varlistentry>
1322
<term><acronym>AM</acronym></term>
1423
<listitem>

doc/src/sgml/catalogs.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3349,8 +3349,8 @@ SCRAM-SHA-256$<replaceable>&lt;iteration count&gt;</replaceable>:<replaceable>&l
33493349
</para>
33503350

33513351
<para>
3352-
Note that when an ACL entry in another catalog is null, it is taken
3353-
to represent the hard-wired default privileges for its object,
3352+
Note that when an <acronym>ACL</acronym> entry in another catalog is null,
3353+
it is taken to represent the hard-wired default privileges for its object,
33543354
<emphasis>not</emphasis> whatever might be in <structname>pg_default_acl</structname>
33553355
at the moment. <structname>pg_default_acl</structname> is only consulted during
33563356
object creation.
@@ -7167,7 +7167,7 @@ SCRAM-SHA-256$<replaceable>&lt;iteration count&gt;</replaceable>:<replaceable>&l
71677167
<listitem>
71687168
<para>
71697169
The referenced object (which must be a role) is mentioned in the
7170-
ACL (access control list, i.e., privileges list) of the
7170+
<acronym>ACL</acronym> of the
71717171
dependent object. (A <symbol>SHARED_DEPENDENCY_ACL</symbol> entry is
71727172
not made for the owner of the object, since the owner will have
71737173
a <symbol>SHARED_DEPENDENCY_OWNER</symbol> entry anyway.)

doc/src/sgml/ddl.sgml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1819,7 +1819,7 @@ ALTER TABLE products RENAME TO items;
18191819
</indexterm>
18201820

18211821
<indexterm zone="ddl-priv">
1822-
<primary>ACL</primary>
1822+
<primary><acronym>ACL</acronym></primary>
18231823
</indexterm>
18241824

18251825
<indexterm zone="ddl-priv-default">
@@ -2183,13 +2183,14 @@ REVOKE ALL ON accounts FROM PUBLIC;
21832183
<para>
21842184
<xref linkend="privilege-abbrevs-table"/> shows the one-letter
21852185
abbreviations that are used for these privilege types in
2186-
<firstterm>ACL</firstterm> (Access Control List) values.
2186+
<firstterm><acronym>ACL</acronym></firstterm> values.
21872187
You will see these letters in the output of the <xref linkend="app-psql"/>
2188-
commands listed below, or when looking at ACL columns of system catalogs.
2188+
commands listed below, or when looking at <acronym>ACL</acronym> columns
2189+
of system catalogs.
21892190
</para>
21902191

21912192
<table id="privilege-abbrevs-table">
2192-
<title>ACL Privilege Abbreviations</title>
2193+
<title><acronym>ACL</acronym> Privilege Abbreviations</title>
21932194
<tgroup cols="3">
21942195
<colspec colname="col1" colwidth="1*"/>
21952196
<colspec colname="col2" colwidth="1*"/>

doc/src/sgml/func.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25286,9 +25286,9 @@ SELECT has_function_privilege('joeuser', 'myfunc(int, text)', 'execute');
2528625286
Constructs an <type>aclitem</type> array holding the default access
2528725287
privileges for an object of type <parameter>type</parameter> belonging
2528825288
to the role with OID <parameter>ownerId</parameter>. This represents
25289-
the access privileges that will be assumed when an object's ACL entry
25290-
is null. (The default access privileges are described in
25291-
<xref linkend="ddl-priv"/>.)
25289+
the access privileges that will be assumed when an object's
25290+
<acronym>ACL</acronym> entry is null. (The default access privileges
25291+
are described in <xref linkend="ddl-priv"/>.)
2529225292
The <parameter>type</parameter> parameter must be one of
2529325293
'c' for <literal>COLUMN</literal>,
2529425294
'r' for <literal>TABLE</literal> and table-like objects,

0 commit comments

Comments
 (0)