~ubuntu-branches/ubuntu/jaunty/gnome-system-tools/jaunty-proposed

« back to all changes in this revision

Viewing changes to src/users/privileges-table.h

  • Committer: Bazaar Package Importer
  • Author(s): Emilio Pozuelo Monfort
  • Date: 2007-12-20 23:22:31 UTC
  • mfrom: (1.1.27 upstream)
  • Revision ID: james.westby@ubuntu.com-20071220232231-y4lyk1l7hpfgslri
Tags: 2.21.3-0ubuntu1
* New upstream release.
  - Network: Support PPPoE/GPRS/UMTS interfaces.
  - Shares: Handle SMB passwords.
  - Common: Improvements to UI locking
  - Ask whether to update config if the user is editing configuration
    and the backends detect some change
  - Translations
    + be@latin (Ihar Hrachyshka)
    + es (Jorge Gonzalez)
    + nb (Kjartan Maraas)
    + ru (Vasiliy Faronov)
    + sv (Daniel Nylander)

* debian/control:
  - Require liboobs >= 2.21.3 in build-depends.
* debian/patches/23_users_update_model.dpatch:
  - Updated for the new release.
* debian/patches/98_automake.dpatch:
  - Regenerated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#ifndef __PRIVILEGES_TABLE_H
25
25
#define __PRIVILEGES_TABLE_H
26
26
 
 
27
#include "user-profiles.h"
 
28
 
27
29
void     create_user_privileges_table      (void);
28
30
void     create_profile_privileges_table   (void);
 
31
void     privileges_table_clear            (void);
29
32
 
30
33
void     populate_privileges_table         (GtkWidget*, gchar*);
31
34
GList*   user_privileges_get_list          (GList*);
32
35
 
 
36
void     privileges_table_add_group        (OobsGroup    *group,
 
37
                                            OobsListIter *list_iter);
 
38
 
 
39
void     privileges_table_set_from_profile (GstUserProfile *profile);
 
40
void     privileges_table_set_from_user    (OobsUser *user);
 
41
 
 
42
void     privileges_table_save             (OobsUser *user);
 
43
 
33
44
 
34
45
#endif /* __PRIVILEGES_TABLE_H */