diff -r 56e347b8189c -r 79755c89b4f3 cwvreg.py --- a/cwvreg.py Sat Apr 18 15:49:40 2009 -0500 +++ b/cwvreg.py Sat Apr 18 15:50:04 2009 -0500 @@ -179,9 +179,9 @@ def possible_actions(self, req, rset, **kwargs): if rset is None: - actions = self.possible_vobjects('actions', req, rset) + actions = self.possible_vobjects('actions', req, rset, **kwargs) else: - actions = rset.possible_actions() # cached implementation + actions = rset.possible_actions(**kwargs) # cached implementation result = {} for action in actions: result.setdefault(action.category, []).append(action)