]> git.ipfire.org Git - thirdparty/dbus.git/commitdiff
Clean up use of the term for an array of dict entries
authorRalf Habacker <ralf.habacker@freenet.de>
Mon, 8 Nov 2021 23:01:46 +0000 (00:01 +0100)
committerRalf Habacker <ralf.habacker@freenet.de>
Mon, 8 Nov 2021 23:01:46 +0000 (00:01 +0100)
fixes #347

Signed-off-by: Ralf Habacker <ralf.habacker@freenet.de>
doc/dbus-specification.xml

index 3f3576daa99cf5bff807e28373cb8e42e62c60d1..556d9a7b80d162e3a58579a81f0f2c9a01557b51 100644 (file)
          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>
                                                    in STRING property_name,
                                                    in VARIANT value);
               org.freedesktop.DBus.Properties.GetAll (in STRING interface_name,
-                                                      out DICT&lt;STRING,VARIANT&gt; props);
+                                                      out ARRAY of DICT_ENTRY&lt;STRING,VARIANT&gt; props);
         </programlisting>
       </para>
       <para>
       <para>
         <programlisting>
               org.freedesktop.DBus.Properties.PropertiesChanged (STRING interface_name,
-                                                                 DICT&lt;STRING,VARIANT&gt; changed_properties,
+                                                                 ARRAY of DICT_ENTRY&lt;STRING,VARIANT&gt; changed_properties,
                                                                  ARRAY&lt;STRING&gt; invalidated_properties);
         </programlisting>
       </para>
       </para>
       <para>
         <programlisting>
-          org.freedesktop.DBus.ObjectManager.GetManagedObjects (out DICT&lt;OBJPATH,DICT&lt;STRING,DICT&lt;STRING,VARIANT&gt;&gt;&gt; objpath_interfaces_and_properties);
+          org.freedesktop.DBus.ObjectManager.GetManagedObjects (out ARRAY of DICT_ENTRY&lt;OBJPATH,ARRAY of DICT_ENTRY&lt;STRING,ARRAY of DICT_ENTRY&lt;STRING,VARIANT&gt;&gt;&gt; objpath_interfaces_and_properties);
         </programlisting>
       </para>
       <para>
       <para>
         <programlisting>
           org.freedesktop.DBus.ObjectManager.InterfacesAdded (OBJPATH object_path,
-                                                              DICT&lt;STRING,DICT&lt;STRING,VARIANT&gt;&gt; interfaces_and_properties);
+                                                              ARRAY of DICT_ENTRY&lt;STRING,ARRAY of DICT_ENTRY&lt;STRING,VARIANT&gt;&gt; interfaces_and_properties);
           org.freedesktop.DBus.ObjectManager.InterfacesRemoved (OBJPATH object_path,
                                                                 ARRAY&lt;STRING&gt; interfaces);
         </programlisting>
         <para>
           As a method:
           <programlisting>
-            UpdateActivationEnvironment (in ARRAY of DICT&lt;STRING,STRING&gt; environment)
+            UpdateActivationEnvironment (in ARRAY of DICT_ENTRY&lt;STRING,STRING&gt; environment)
           </programlisting>
           Message arguments:
           <informaltable>
               <tbody>
                 <row>
                   <entry>0</entry>
-                  <entry>ARRAY of DICT&lt;STRING,STRING&gt;</entry>
+                  <entry>ARRAY of DICT_ENTRY&lt;STRING,STRING&gt;</entry>
                   <entry>Environment to add or update</entry>
                 </row>
               </tbody>
         <para>
           As a method:
           <programlisting>
-            DICT&lt;STRING,VARIANT&gt; GetConnectionCredentials (in STRING bus_name)
+            ARRAY of DICT_ENTRY&lt;STRING,VARIANT&gt; GetConnectionCredentials (in STRING bus_name)
           </programlisting>
           Message arguments:
           <informaltable>
             <tbody>
               <row>
                 <entry>0</entry>
-                <entry>DICT&lt;STRING,VARIANT&gt;</entry>
+                <entry>ARRAY of DICT_ENTRY&lt;STRING,VARIANT&gt;</entry>
                 <entry>Credentials</entry>
               </row>
             </tbody>