app/soc/views/models/notification.py
changeset 2076 1cd180cc56c9
parent 1991 3aeda3007467
child 2161 3b5e0e0880cd
--- a/app/soc/views/models/notification.py	Fri Apr 03 17:34:20 2009 +0000
+++ b/app/soc/views/models/notification.py	Fri Apr 03 17:41:08 2009 +0000
@@ -29,10 +29,8 @@
 
 from soc.logic import cleaning
 from soc.logic import dicts
-from soc.logic import validate
 from soc.models import notification as notification_model
 from soc.views import helper
-from soc.views import out_of_band
 from soc.views.helper import access
 from soc.views.helper import decorators
 from soc.views.helper import lists as list_helper
@@ -109,7 +107,7 @@
   @decorators.merge_params
   @decorators.check_access
   def list(self, request, access_type,
-           page_name=None, params=None, filter=None):
+           page_name=None, params=None, filter=None, order=None, **kwargs):
     """Lists all notifications that the current logged in user has stored.
 
     for parameters see base.list()
@@ -163,7 +161,7 @@
     # get the current user
     current_user = user_logic.getForCurrentAccount()
 
-    fields['link_id'] = 't%i' %(int(time.time()*100))
+    fields['link_id'] = 't%i' % (int(time.time()*100))
     fields['scope'] = fields['to_user']
     fields['from_user'] = current_user
     fields['scope_path'] = fields['to_user'].link_id