gdbus: Remove root node 'name' attribute in introspection
authorDaniel Wagner <daniel.wagner@bmw-carit.de>
Fri, 14 Jan 2011 15:14:21 +0000 (16:14 +0100)
committerMarcel Holtmann <marcel@holtmann.org>
Wed, 19 Jan 2011 16:25:44 +0000 (17:25 +0100)
commit3daf325deb67715d03b7b6187fb2e68ed4fda56f
tree601ccb2dec8dea82c3c5cbb3245632067f9e885b
parent9e9a3f26dea7c1534d418929ca6f7094e1d3ffd8
gdbus: Remove root node 'name' attribute in introspection

generate_introspection_xml generates the root <node> tags with a
'name' attribute. This seems to be a valid attribute but it is not
consistent with the way the D-Bus daemon generates empty nodes.

For example if we register "/foo/bar", D-Bus daemon will generate for
"/foo" a introspection which looks like this:

<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node>
  <node name="bar"/>
</node>

and generate_introspection_xml generates for "/foo/bar":

<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node name="/foo/bar">
</node>

Just don't add the 'name' attribute to the root node.  The GLib
binding for D-Bus does it the same way.
gdbus/object.c