Skip to content

fjlib.py uses ObjectPaginator instead of Paginator #28

Open
@GoogleCodeExporter

Description

@GoogleCodeExporter
The ObjectPaginator utility has been removed completely from the most
modern versions of Django.  In preparation for the official release of
Django 1.0, I would switch to Paginator.  Maybe you could do something like...

{{{
try:
    from django.core.paginator import Paginator
except ImportError:
    from django.core.paginator import ObjectPaginator as Paginator
}}}

...to help maintain a little backwards compatibility.

Original issue reported on code.google.com by [email protected] on 12 Aug 2008 at 8:59

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions