After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 665346 - support login banners
support login banners
Status: RESOLVED FIXED
Product: gnome-shell
Classification: Core
Component: login-screen
3.1.x
Other Linux
: Normal normal
: ---
Assigned To: Ray Strode [halfline]
gnome-shell-maint
Depends on:
Blocks:
 
 
Reported: 2011-12-01 22:25 UTC by Ray Strode [halfline]
Modified: 2012-07-06 13:00 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Add org.gnome.login-screen banner-message setting (1.05 KB, patch)
2012-03-02 11:44 UTC, Marius Rieder
needs-work Details | Review
Show configured banner message (2.55 KB, patch)
2012-03-02 11:44 UTC, Marius Rieder
reviewed Details | Review
v2 of the patch (2.95 KB, patch)
2012-03-02 18:00 UTC, Marius Rieder
reviewed Details | Review
Implemented banner support for the login screen (3.31 KB, patch)
2012-07-06 01:12 UTC, Matthias Clasen
accepted-commit_now Details | Review

Description Ray Strode [halfline] 2011-12-01 22:25:43 UTC
A lot of labs and such need a way to show a disclaimer or small message to users at the login screen.

This has historically been implemented by the banner_message_text key.

This isn't implement in shell greeter.
Comment 1 Marius Rieder 2012-03-02 11:44:06 UTC
Created attachment 208848 [details] [review]
Add org.gnome.login-screen banner-message setting
Comment 2 Marius Rieder 2012-03-02 11:44:41 UTC
Created attachment 208849 [details] [review]
Show configured banner message
Comment 3 Marius Rieder 2012-03-02 11:46:56 UTC
We used banner_message_text to distinguish between central managed systems and user managed/installed systems. Patches added
Comment 4 Ray Strode [halfline] 2012-03-02 17:47:57 UTC
Review of attachment 208849 [details] [review]:

hey thanks for working on this!

::: js/gdm/loginDialog.js
@@ +787,3 @@
+                                           text: ''});
+        this.contentLayout.add(this._bannerLabel);
+        this._updateBanner();

Don't you also need to call this on the "changed::" + _BANNER_TEXT_KEY signal of the _settings object ?
Comment 5 Marius Rieder 2012-03-02 18:00:30 UTC
Created attachment 208865 [details] [review]
v2 of the patch

Definitely. Added bind to change:: and renamed _BANNER_TEXT_KEY to _BANNER_MESSAGE_KEY to closer reflect banner-message.
Comment 6 Ray Strode [halfline] 2012-05-08 21:11:15 UTC
Review of attachment 208865 [details] [review]:

Hey sorry for the really slow turn around on this patch. Thank you for the time you put into this.

::: data/theme/gdm.css
@@ +24,3 @@
+    padding-bottom: 1em;
+}
+

We should probably get designer feedback here. But seems reasonable at a glance.

::: js/gdm/loginDialog.js
@@ +50,3 @@
 const _LOGIN_SCREEN_SCHEMA = 'org.gnome.login-screen';
 const _FINGERPRINT_AUTHENTICATION_KEY = 'enable-fingerprint-authentication';
+const _BANNER_MESSAGE_KEY = 'banner-message';

There are two keys:

    <key name="banner-message-enable" type="b">
      <default>false</default>
      <_summary>
        Enable showing the banner message
      </_summary>
      <_description>
        Set to true to show the banner message text.
      </_description>
    </key>
    <key name="banner-message-text" type="s">
      <default>''</default>
      <_summary>
        Banner message text
      </_summary>
      <_description>
        Text banner message to show in the login window.
      </_description>
    </key>

so __BANNER_MESSAGE_KEY needs to be 'banner-message-text' and also need to look at 'banner-message-enable'
Comment 7 Jasper St. Pierre (not reading bugmail) 2012-06-01 12:23:06 UTC
Review of attachment 208848 [details] [review]:

( obsolete - marking rejected to get off of review list )
Comment 8 Matthias Clasen 2012-07-06 01:12:00 UTC
Created attachment 218142 [details] [review]
Implemented banner support for the login screen

Based on a patch by Marius Rieder,
https://bugzilla.gnome.org/review?bug=665346
Comment 9 Matthias Clasen 2012-07-06 01:12:51 UTC
Lets not let this linger forever... here is a new patch, using the correct keys. Tested to work.
Comment 10 Jasper St. Pierre (not reading bugmail) 2012-07-06 01:13:50 UTC
Review of attachment 218142 [details] [review]:

Seems fine to me, sans one minor nit.

::: js/gdm/loginDialog.js
@@ +793,3 @@
 
+        this._bannerLabel = new St.Label({ style_class: 'login-dialog-banner',
+                                           text: ''});

Missing whitespace here.
Comment 11 Matthias Clasen 2012-07-06 13:00:31 UTC
I've pushed it with the space I think you were missing. Your review comments are sometimes a bit too terse to be entirely sure...