diff -r c76a366c7ab4 -r a1cc853a56e5 app/soc/views/site/docs/list.py --- a/app/soc/views/site/docs/list.py Sun Oct 12 00:08:54 2008 +0000 +++ b/app/soc/views/site/docs/list.py Sun Oct 12 00:12:53 2008 +0000 @@ -22,7 +22,7 @@ ] -from soc.logic import works +import soc.logic from soc.logic.helper import access from soc.views import simple from soc.views import helper @@ -59,8 +59,7 @@ offset=request.GET.get('offset'), limit=request.GET.get('limit')) # Fetch one more to see if there should be a 'next' link - docs = works.getWorksForLimitAndOffset( - limit + 1, offset=offset, cls=soc.models.document.Document) + docs = soc.logic.work_logic.getForLimitAndOffset(limit + 1, offset=offset) context['pagination_form'] = helper.lists.makePaginationForm(request, limit)