diff options
author | kremlin- <ian@kremlin.cc> | 2014-07-02 11:28:33 +0800 |
---|---|---|
committer | kremlin- <ian@kremlin.cc> | 2014-07-02 11:28:33 +0800 |
commit | 9c62dcb8c491ca195141a39ef715b55ca1dfda6e (patch) | |
tree | 18645f6b96ab4012316b0e20ec2efb08ae4a809d /conf/timedated-ispect.xml | |
parent | 7ce16a3590b7a8822dc56fe17dddf15035a0dfdb (diff) | |
download | systembsd-9c62dcb8c491ca195141a39ef715b55ca1dfda6e.tar systembsd-9c62dcb8c491ca195141a39ef715b55ca1dfda6e.tar.gz systembsd-9c62dcb8c491ca195141a39ef715b55ca1dfda6e.tar.bz2 systembsd-9c62dcb8c491ca195141a39ef715b55ca1dfda6e.tar.lz systembsd-9c62dcb8c491ca195141a39ef715b55ca1dfda6e.tar.xz systembsd-9c62dcb8c491ca195141a39ef715b55ca1dfda6e.tar.zst systembsd-9c62dcb8c491ca195141a39ef715b55ca1dfda6e.zip |
following last commit, freshen up all ispect xml files with a on an updated archlinux box. also format all XML files to follow the same style (spacing/doctypes/etc)
Diffstat (limited to 'conf/timedated-ispect.xml')
-rw-r--r-- | conf/timedated-ispect.xml | 41 |
1 files changed, 27 insertions, 14 deletions
diff --git a/conf/timedated-ispect.xml b/conf/timedated-ispect.xml index 48f2201..5dc44ff 100644 --- a/conf/timedated-ispect.xml +++ b/conf/timedated-ispect.xml @@ -1,26 +1,39 @@ <?xml version="1.0" encoding="UTF-8"?> -<node name="/org/freedesktop/timedate1"> +<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"> +<node> <interface name="org.freedesktop.timedate1"> + <property name="Timezone" type="s" access="read" /> + <property name="LocalRTC" type="b" access="read" /> + <property name="CanNTP" type="b" access="read"> + <annotation name="org.freedesktop.DBus.Property.EmitsChangedSignal" value="false" /> + </property> + <property name="NTP" type="b" access="read" /> + <property name="NTPSynchronized" type="b" access="read"> + <annotation name="org.freedesktop.DBus.Property.EmitsChangedSignal" value="false" /> + </property> + <property name="TimeUSec" type="t" access="read"> + <annotation name="org.freedesktop.DBus.Property.EmitsChangedSignal" value="false" /> + </property> + <property name="RTCTimeUSec" type="t" access="read"> + <annotation name="org.freedesktop.DBus.Property.EmitsChangedSignal" value="false" /> + </property> <method name="SetTime"> - <arg direction="in" type="x" name="usec_utc" /> - <arg direction="in" type="b" name="relative" /> - <arg direction="in" type="b" name="user_interaction" /> + <arg type="x" direction="in" /> + <arg type="b" direction="in" /> + <arg type="b" direction="in" /> </method> <method name="SetTimezone"> - <arg direction="in" type="s" name="timezone" /> - <arg direction="in" type="b" name="user_interaction" /> + <arg type="s" direction="in" /> + <arg type="b" direction="in" /> </method> <method name="SetLocalRTC"> - <arg direction="in" type="b" name="local_rtc" /> - <arg direction="in" type="b" name="fix_system" /> - <arg direction="in" type="b" name="user_interaction" /> + <arg type="b" direction="in" /> + <arg type="b" direction="in" /> + <arg type="b" direction="in" /> </method> <method name="SetNTP"> - <arg direction="in" type="b" name="use_ntp" /> - <arg direction="in" type="b" name="user_interaction" /> + <arg type="b" direction="in" /> + <arg type="b" direction="in" /> </method> - <property name="Timezone" type="s" access="read" /> - <property name="LocalRTC" type="b" access="read" /> - <property name="NTP" type="b" access="read" /> </interface> </node> |