rpms/gdm/devel show-users.patch,NONE,1.1 gdm.spec,1.389,1.390

Matthias Clasen (mclasen) fedora-extras-commits at redhat.com
Thu May 8 19:04:06 UTC 2008


Author: mclasen

Update of /cvs/extras/rpms/gdm/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv14504

Modified Files:
	gdm.spec 
Added Files:
	show-users.patch 
Log Message:
Add a GConf key to disable the user list


show-users.patch:

--- NEW FILE show-users.patch ---
--- gdm-2.22.0/gui/simple-greeter/gdm-user-chooser-widget.c	2008-05-01 18:35:35.000000000 -0400
+++ hacked/gui/simple-greeter/gdm-user-chooser-widget.c	2008-05-07 20:27:09.000000000 -0400
@@ -34,9 +34,14 @@
 #include <glib/gstdio.h>
 #include <gtk/gtk.h>
 
+#include <gconf/gconf-client.h>
+
 #include "gdm-user-manager.h"
 #include "gdm-user-chooser-widget.h"
 
+
+#define KEY_DISABLE_USER_LIST "/apps/gdm/simple-greeter/disable_user_list"
+
 enum {
         USER_NO_DISPLAY              = 1 << 0,
         USER_ACCOUNT_DISABLED        = 1 << 1,
@@ -59,6 +64,7 @@
         guint           show_other_user : 1;
         guint           show_guest_user : 1;
         guint           show_auto_user : 1;
+	guint		show_normal_users : 1;
 };
 
 enum {
@@ -231,6 +237,25 @@
         }
 }
 
+static gboolean 
+is_user_list_disabled (GdmUserChooserWidget *widget)
+{
+	GConfClient *client;
+	GError      *error;
+	gboolean     result;
+
+        client = gconf_client_get_default ();
+        error = NULL;
+        result = gconf_client_get_bool (client, KEY_DISABLE_USER_LIST, &error);
+        if (error != NULL) {
+                g_debug ("GdmUserChooserWidget: unable to get disable-user-list configuration: %s", error->message);
+                g_error_free (error);
+        }
+        g_object_unref (client);
+
+        return result;
+}
+
 static GObject *
 gdm_user_chooser_widget_constructor (GType                  type,
                                      guint                  n_construct_properties,
@@ -247,6 +272,8 @@
         gdm_user_chooser_widget_set_show_auto_user (user_chooser_widget, FALSE);
         gdm_user_chooser_widget_set_show_other_user (user_chooser_widget, TRUE);
 
+	user_chooser_widget->priv->show_normal_users = !is_user_list_disabled (user_chooser_widget);
+
         return G_OBJECT (user_chooser_widget);
 }
 
@@ -403,6 +430,9 @@
         char         *tooltip;
         gboolean      is_logged_in;
 
+	if (!widget->priv->show_normal_users)
+		return;
+
         pixbuf = gdm_user_render_icon (user, ICON_SIZE);
         if (pixbuf == NULL && widget->priv->stock_person_pixbuf != NULL) {
                 pixbuf = g_object_ref (widget->priv->stock_person_pixbuf);
--- gdm-2.22.0/gui/simple-greeter/gdm-simple-greeter.schemas.in	2008-05-07 20:28:57.000000000 -0400
+++ hacked/gui/simple-greeter/gdm-simple-greeter.schemas.in	2008-05-07 20:22:33.000000000 -0400
@@ -68,6 +68,17 @@
       </locale>
     </schema>
     <schema>
+      <key>/schemas/apps/gdm/simple-greeter/disable_user_list</key>
+      <applyto>/apps/gdm/simple-greeter/disable_user_list</applyto>
+      <owner>gdm-simple-greeter</owner>
+      <type>bool</type>
+      <default>FALSE</default>
+      <locale name="C">
+        <short>Do not show known users in the login window</short>
+        <long>Set to TRUE to disable showing known users in the login window.</long>
+      </locale>
+    </schema>
+    <schema>
       <key>/schemas/apps/gdm/simple-greeter/wm_use_compiz</key>
       <applyto>/apps/gdm/simple-greeter/wm_use_compiz</applyto>
       <owner>gdm-simple-greeter</owner>


Index: gdm.spec
===================================================================
RCS file: /cvs/extras/rpms/gdm/devel/gdm.spec,v
retrieving revision 1.389
retrieving revision 1.390
diff -u -r1.389 -r1.390
--- gdm.spec	5 May 2008 17:20:10 -0000	1.389
+++ gdm.spec	8 May 2008 19:03:22 -0000	1.390
@@ -16,7 +16,7 @@
 Summary: The GNOME Display Manager
 Name: gdm
 Version: 2.22.0
-Release: 5%{?dist}
+Release: 6%{?dist}
 Epoch: 1
 License: GPLv2+
 Group: User Interface/X
@@ -80,6 +80,9 @@
 Patch1: xkb-groups.patch
 # from upstream svn
 Patch2: gdm-keyboard-chooser.patch
+# from upstream svn
+Patch3: show-users.patch
+
 # Fedora-specific
 Patch99: gdm-2.21.8-fedora-logo.patch
 
@@ -102,6 +105,7 @@
 %setup -q
 %patch1 -p1 -b .xkb-groups
 %patch2 -p1 -b .keyboard-chooser
+%patch3 -p1 -b .show-users
 %patch99 -p1 -b .fedora-logo
 
 autoreconf
@@ -301,6 +305,9 @@
 %{_datadir}/gnome-2.0/ui/GNOME_FastUserSwitchApplet.xml
 
 %changelog
+* Thu May  8 2008 Matthias Clasen <mclasen at redhat.com> - 1:2.22.0-6
+- Add a GConf key to disable the user list
+
 * Mon May  5 2008 Matthias Clasen <mclasen at redhat.com> - 1:2.22.0-5
 - Autoreconf
 - Bump rev




More information about the scm-commits mailing list