~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to lib/common/db.py

  • Committer: mattgiuca
  • Date: 2008-02-15 03:58:06 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:470
db: Added a field login_fields_list which is an ordered version of the
fields.
listusers: Now sorts by login name, and uses db.login_fields_list to get the
list of fields to print instead of hard-coding.

Show diffs side-by-side

added added

removed removed

Lines of Context:
257
257
    # USER MANAGEMENT FUNCTIONS #
258
258
 
259
259
    login_primary = frozenset(["login"])
260
 
    login_fields = frozenset([
 
260
    login_fields_list = [
261
261
        "login", "passhash", "state", "unixid", "email", "nick", "fullname",
262
262
        "rolenm", "studentid", "acct_exp", "pass_exp"
263
 
    ])
 
263
    ]
 
264
    login_fields = frozenset(login_fields_list)
264
265
    # Do not return passhash when reading from the DB
265
266
    login_getfields = login_fields - frozenset(["passhash"])
266
267