mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-05 06:28:00 +02:00
Merge branch 'fix-spec' into 'master'
spec: Clean up use of the term for an array of dict entries Closes #347 See merge request dbus/dbus!215
This commit is contained in:
commit
3a3aae70fd
1 changed files with 20 additions and 10 deletions
|
|
@ -6,8 +6,8 @@
|
|||
<article id="index">
|
||||
<articleinfo>
|
||||
<title>D-Bus Specification</title>
|
||||
<releaseinfo>Version 0.36</releaseinfo>
|
||||
<date>2020-04-21</date>
|
||||
<releaseinfo>Version 0.37</releaseinfo>
|
||||
<date>(not yet released)</date>
|
||||
<authorgroup>
|
||||
<author>
|
||||
<firstname>Havoc</firstname>
|
||||
|
|
@ -78,6 +78,16 @@
|
|||
See <ulink url='http://cgit.freedesktop.org/dbus/dbus/log/doc/dbus-specification.xml'>commit log</ulink>
|
||||
</revremark>
|
||||
</revision>
|
||||
<revision>
|
||||
<revnumber>0.37</revnumber>
|
||||
<date>(not yet released)</date>
|
||||
<authorinitials></authorinitials>
|
||||
<revdescription>
|
||||
<itemizedlist>
|
||||
<listitem><simpara>Clean up use of the term for an array of dict entries</simpara></listitem>
|
||||
</itemizedlist>
|
||||
</revdescription>
|
||||
</revision>
|
||||
<revision>
|
||||
<revnumber>0.36</revnumber>
|
||||
<date>2020-04-21</date>
|
||||
|
|
@ -4314,7 +4324,7 @@
|
|||
in STRING property_name,
|
||||
in VARIANT value);
|
||||
org.freedesktop.DBus.Properties.GetAll (in STRING interface_name,
|
||||
out DICT<STRING,VARIANT> props);
|
||||
out ARRAY of DICT_ENTRY<STRING,VARIANT> props);
|
||||
</programlisting>
|
||||
</para>
|
||||
<para>
|
||||
|
|
@ -4364,7 +4374,7 @@
|
|||
<para>
|
||||
<programlisting>
|
||||
org.freedesktop.DBus.Properties.PropertiesChanged (STRING interface_name,
|
||||
DICT<STRING,VARIANT> changed_properties,
|
||||
ARRAY of DICT_ENTRY<STRING,VARIANT> changed_properties,
|
||||
ARRAY<STRING> invalidated_properties);
|
||||
</programlisting>
|
||||
</para>
|
||||
|
|
@ -4411,7 +4421,7 @@
|
|||
</para>
|
||||
<para>
|
||||
<programlisting>
|
||||
org.freedesktop.DBus.ObjectManager.GetManagedObjects (out DICT<OBJPATH,DICT<STRING,DICT<STRING,VARIANT>>> objpath_interfaces_and_properties);
|
||||
org.freedesktop.DBus.ObjectManager.GetManagedObjects (out ARRAY of DICT_ENTRY<OBJPATH,ARRAY of DICT_ENTRY<STRING,ARRAY of DICT_ENTRY<STRING,VARIANT>>> objpath_interfaces_and_properties);
|
||||
</programlisting>
|
||||
</para>
|
||||
<para>
|
||||
|
|
@ -4434,7 +4444,7 @@
|
|||
<para>
|
||||
<programlisting>
|
||||
org.freedesktop.DBus.ObjectManager.InterfacesAdded (OBJPATH object_path,
|
||||
DICT<STRING,DICT<STRING,VARIANT>> interfaces_and_properties);
|
||||
ARRAY of DICT_ENTRY<STRING,ARRAY of DICT_ENTRY<STRING,VARIANT>> interfaces_and_properties);
|
||||
org.freedesktop.DBus.ObjectManager.InterfacesRemoved (OBJPATH object_path,
|
||||
ARRAY<STRING> interfaces);
|
||||
</programlisting>
|
||||
|
|
@ -6534,7 +6544,7 @@
|
|||
<para>
|
||||
As a method:
|
||||
<programlisting>
|
||||
UpdateActivationEnvironment (in ARRAY of DICT<STRING,STRING> environment)
|
||||
UpdateActivationEnvironment (in ARRAY of DICT_ENTRY<STRING,STRING> environment)
|
||||
</programlisting>
|
||||
Message arguments:
|
||||
<informaltable>
|
||||
|
|
@ -6549,7 +6559,7 @@
|
|||
<tbody>
|
||||
<row>
|
||||
<entry>0</entry>
|
||||
<entry>ARRAY of DICT<STRING,STRING></entry>
|
||||
<entry>ARRAY of DICT_ENTRY<STRING,STRING></entry>
|
||||
<entry>Environment to add or update</entry>
|
||||
</row>
|
||||
</tbody>
|
||||
|
|
@ -6728,7 +6738,7 @@
|
|||
<para>
|
||||
As a method:
|
||||
<programlisting>
|
||||
DICT<STRING,VARIANT> GetConnectionCredentials (in STRING bus_name)
|
||||
ARRAY of DICT_ENTRY<STRING,VARIANT> GetConnectionCredentials (in STRING bus_name)
|
||||
</programlisting>
|
||||
Message arguments:
|
||||
<informaltable>
|
||||
|
|
@ -6764,7 +6774,7 @@
|
|||
<tbody>
|
||||
<row>
|
||||
<entry>0</entry>
|
||||
<entry>DICT<STRING,VARIANT></entry>
|
||||
<entry>ARRAY of DICT_ENTRY<STRING,VARIANT></entry>
|
||||
<entry>Credentials</entry>
|
||||
</row>
|
||||
</tbody>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue