web/views/euser.py
branchtls-sprint
changeset 728 a95b284150d1
parent 692 800592b8d39b
child 753 17d38f000bea
--- a/web/views/euser.py	Tue Feb 17 23:46:48 2009 +0100
+++ b/web/views/euser.py	Tue Feb 17 23:47:23 2009 +0100
@@ -19,8 +19,8 @@
 
 class UserPreferencesEntityAction(Action):
     id = 'prefs'
-    __selectors__ = (one_line_rset, implements('EUser'),
-                     match_user_groups('owners', 'managers'))
+    __select__ = (one_line_rset & implements('EUser') &
+                  match_user_groups('owners', 'managers'))
     
     title = _('preferences')
     category = 'mainactions'
@@ -31,7 +31,7 @@
 
 
 class EUserPrimaryView(PrimaryView):
-    __selectors__ = implements('EUser')
+    __select__ = implements('EUser')
     
     skip_attrs = ('firstname', 'surname')
     
@@ -51,7 +51,7 @@
                                  ]
 class FoafView(EntityView):
     id = 'foaf'
-    __selectors__ = implements('EUser')
+    __select__ = implements('EUser')
     
     title = _('foaf')
     templatable = False
@@ -97,7 +97,7 @@
     """displays a simple euser / egroups editable table"""
     
     id = 'editgroups'
-    __selectors__ = implements('EUser')
+    __select__ = implements('EUser')
     
     def call(self):
         self.req.add_css('cubicweb.acl.css')