~ubuntu-branches/debian/stretch/epoptes/stretch

« back to all changes in this revision

Viewing changes to epoptes/core/structs.py

  • Committer: Package Import Robot
  • Author(s): Vagrant Cascadian, Alkis Georgopoulos, Vagrant Cascadian
  • Date: 2012-03-04 13:58:00 UTC
  • mfrom: (1.2.1) (6.1.1 precise)
  • Revision ID: package-import@ubuntu.com-20120304135800-9ou11fsepopebkiw
Tags: 0.4.4-1
[ Alkis Georgopoulos ]
* screenshot: exit cleanly when X isn't available.
* Handle late connectionLost events better.
* Replace the View menu with the Labels menu.
* Ability to show real names instead of usernames.
* Don't use epoptes-client.init on LTSP 5.3.
* Get the active display when executing root commands.
* Remember more user settings (labels, history).
* Don't hang on close, on Ubuntu 12.04.
* Mark epoptes as the owner of /etc/epoptes (Closes: #661083).
* Extract shell code from python scripts for maintainability.
* Don't crash when clients with a bad certificate connect (LP: #940114).
* Add Spanish and Swedish translations.
  Many thanks to the translators!

[ Vagrant Cascadian ]
* Update Standards-Version to 3.9.3, no changes necessary. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
    def set_name(self, name):
57
57
        self.alias = name
58
58
        
59
 
    def add_user(self, name, handle):
60
 
        self.users[handle] = name
 
59
    def add_user(self, username, realname, handle):
 
60
        self.users[handle] = {'uname' : username, 'rname' : realname}
61
61
 
62
62
 
63
63
class Group: