app/soc/views/models/base.py
changeset 1227 38afecddfbed
parent 1218 569a3fe9cb88
child 1268 9d092b702f92
--- a/app/soc/views/models/base.py	Thu Feb 05 23:41:02 2009 +0000
+++ b/app/soc/views/models/base.py	Thu Feb 05 23:43:52 2009 +0000
@@ -564,24 +564,12 @@
 
     get_dict = request.GET
 
-    # scope_path is not required
-    scope_path = get_dict.get('scope_path', None)
-    return_url = get_dict['continue']
-    field = get_dict['field']
-
-    filter = {}
-
-    if scope_path:
-      filter['scope_path'] = scope_path
-
-    data = self._logic.getForFields(filter=filter, limit=1000)
+    data = self._logic.getForFields(filter=get_dict, limit=1000)
 
     data = [i.toDict() for i in data]
 
     to_json = {
         'data': data,
-        'return_url': return_url,
-        'field': field,
         }
 
     json = simplejson.dumps(to_json)