Skip to content
Snippets Groups Projects
Select Git revision
  • main
1 result
An error occurred while fetching branches. Retry the search.
An error occurred while fetching tags. Retry the search.

Value.xml

Blame
  • Federico Mena Quintero's avatar
    Federico Mena Quintero authored
    https://dbus.freedesktop.org/doc/dbus-specification.html#introspection-format
    
    Per the DBus spec, "Only the root <node> element can omit the node
    name, as it's known to be the object that was introspected."
    
    When we have a DBus XML description:
    
      <node>
        <interface name="Foo">
        </interface>
      </node>
    
    The toplevel <node> element does not need a `name` attribute.
    
    While we are at it, reindent all the XML files properly.
    760ff764
    History
    Value.xml 413 B
    <?xml version="1.0" encoding="UTF-8"?>
    <node>
      <interface name="org.a11y.atspi.Value">
    
        <property name="MinimumValue" type="d" access="read"/>
    
        <property name="MaximumValue" type="d" access="read"/>
    
        <property name="MinimumIncrement" type="d" access="read"/>
    
        <property name="CurrentValue" type="d" access="readwrite"/>
    
        <property name="Text" type="s" access="read"/>
    
      </interface>
    </node>