~netlandish/django-pagination

6351d0071e6194c9fee3ec0df447acc84f6e4f7d — floguy 16 years ago a021a81
Fixed bug introduced with python2.3 compatability.  Also, renamed the PyPI package to django-pagination instead of just pagination.

git-svn-id: https://django-pagination.googlecode.com/svn/trunk@44 7f1efe38-554e-0410-b69d-834cb44da2d5
2 files changed, 4 insertions(+), 5 deletions(-)

M pagination/templatetags/pagination_tags.py
M setup.py
M pagination/templatetags/pagination_tags.py => pagination/templatetags/pagination_tags.py +1 -2
@@ 3,7 3,6 @@ try:
except NameError:
    from sets import Set as set
from django import template
from django.db.models.query import QuerySet
from django.core.paginator import Paginator, InvalidPage
from django.conf import settings



@@ 145,7 144,7 @@ def paginate(context, window=DEFAULT_WINDOW):
        if len(first.intersection(current)) == 0:
            first_list = list(first)
            first_list.sort()
            second_list = list(second)
            second_list = list(current)
            second_list.sort()
            pages.extend(first_list)
            diff = second_list[0] - first_list[-1]

M setup.py => setup.py +3 -3
@@ 1,6 1,6 @@
from setuptools import setup, find_packages

version = '1.0.2'
version = '1.0.4'

LONG_DESCRIPTION = """
How to use django-pagination


@@ 76,7 76,7 @@ a way to navigate between the different pages--all without touching your views.
"""

setup(
    name='pagination',
    name='django-pagination',
    version=version,
    description="django-pagination",
    long_description=LONG_DESCRIPTION,


@@ 89,7 89,7 @@ setup(
    keywords='pagination,django',
    author='Eric Florenzano',
    author_email='floguy@gmail.com',
    url='http://www.eflorenzano.com/',
    url='http://django-pagination.googlecode.com/',
    license='BSD',
    packages=find_packages(),
    include_package_data=True,