aboutsummaryrefslogtreecommitdiff
path: root/src/users-service.xml
diff options
context:
space:
mode:
authorKen VanDine <ken.vandine@canonical.com>2009-09-24 18:11:10 -0400
committerKen VanDine <ken.vandine@canonical.com>2009-09-24 18:11:10 -0400
commit8bbcf87cf6cd876eacec968438d1622e3b362225 (patch)
treed955b77d089152549107434f38df5dd12abddefb /src/users-service.xml
parent86c162bb5ae1eca498296d7890789130b9eea2a4 (diff)
parent2bddafc048379759d720f250739c59fcad7f6249 (diff)
downloadayatana-indicator-session-8bbcf87cf6cd876eacec968438d1622e3b362225.tar.gz
ayatana-indicator-session-8bbcf87cf6cd876eacec968438d1622e3b362225.tar.bz2
ayatana-indicator-session-8bbcf87cf6cd876eacec968438d1622e3b362225.zip
* Upstream release 0.1.5 (LP: #436223)
* PolicyKit-1 support (LP: #418643) * GDM User list support (LP: #422052) * MissionControl5 support (LP: #427643) * Better locking of the screensaver (LP: #428115) * debian/control: Adding in a libempathy-dev build dependency as it's now required by upstream. * Removing patches 01_polkit-1.patch and 99_autoreconf.patch as they were merged upstream.
Diffstat (limited to 'src/users-service.xml')
-rw-r--r--src/users-service.xml56
1 files changed, 56 insertions, 0 deletions
diff --git a/src/users-service.xml b/src/users-service.xml
new file mode 100644
index 0000000..c90f1e8
--- /dev/null
+++ b/src/users-service.xml
@@ -0,0 +1,56 @@
+<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
+<node name="/org/gnome/DisplayManager/UserManager">
+ <interface name="org.gnome.DisplayManager.UserManager">
+
+ <!-- Get the number of known users -->
+ <method name="CountUsers">
+ <arg name="user_count" direction="out" type="i"/>
+ </method>
+
+ <!-- Get the list of known UIDs -->
+ <method name="GetUserList">
+ <arg name="uids" direction="out" type="ax"/>
+ </method>
+
+ <!-- Get user info for a user -->
+ <method name="GetUserInfo">
+ <arg name="uid" direction="in" type="x"/>
+ <arg name="user_name" direction="out" type="s"/>
+ <arg name="real_name" direction="out" type="s"/>
+ <arg name="shell" direction="out" type="s"/>
+ <arg name="login_count" direction="out" type="i"/>
+ <arg name="icon_url" direction="out" type="s"/>
+ </method>
+
+ <!-- Get user info for a list of users -->
+ <method name="GetUsersInfo">
+ <arg name="uid" direction="in" type="ax"/>
+ <!-- (uid, user_name, real_name, shell, icon_url) -->
+ <arg name="user_info" direction="out" type="a(xsssis)"/>
+ </method>
+
+ <!-- Query if the initial user list is loaded -->
+ <method name="GetUsersLoaded">
+ <arg name="is_loaded" direction="out" type="b"/>
+ </method>
+
+ <!-- Triggered when the initial user list is loaded -->
+ <signal name="UsersLoaded"></signal>
+
+ <!-- Triggered when a users are added to/removed from the system.
+ Clients should monitor these signals as soon as they connect to
+ this object -->
+ <signal name="UserAdded">
+ <arg name="uid" type="x"/>
+ </signal>
+ <signal name="UserRemoved">
+ <arg name="uid" type="x"/>
+ </signal>
+
+ <!-- Triggered when a user has updated information -->
+ <signal name="UserUpdated">
+ <arg name="uid" type="x"/>
+ </signal>
+
+ </interface>
+</node>