Made the paginate tag a normal tag with an optional argument, template, to override...
[django-pagination.git] / setup.py
1 from setuptools import setup, find_packages
2
3 version = '1.1.0'
4
5 LONG_DESCRIPTION = """
6 How to use django-pagination
7 ----------------------------
8
9 ``django-pagination`` allows for easy Digg-style pagination without modifying
10 your views.
11
12 There are really 5 steps to setting it up with your projects (not including 
13 installation, which is covered in INSTALL.txt in this same directory.)
14
15 1. List this application in the ``INSTALLED_APPS`` portion of your settings
16    file.  Your settings file might look something like::
17    
18        INSTALLED_APPS = (
19            # ...
20            'pagination',
21        )
22
23
24 2. Install the pagination middleware.  Your settings file might look something
25    like::
26    
27        MIDDLEWARE_CLASSES = (
28            # ...
29            'pagination.middleware.PaginationMiddleware',
30        )
31
32 3. If it's not already added in your setup, add the request context processor.
33    Note that context processors are set by default implicitly, so to set them
34    explicitly, you need to copy and paste this code into your under
35    the value TEMPLATE_CONTEXT_PROCESSORS::
36    
37         ("django.core.context_processors.auth",
38         "django.core.context_processors.debug",
39         "django.core.context_processors.i18n",
40         "django.core.context_processors.media",
41         "django.core.context_processors.request")
42
43 4. Add this line at the top of your template to load the pagination tags:
44
45        {% load pagination_tags %}
46
47
48 5. Decide on a variable that you would like to paginate, and use the
49    autopaginate tag on that variable before iterating over it.  This could 
50    take one of two forms (using the canonical ``object_list`` as an example
51    variable):
52    
53        {% autopaginate object_list %}
54        
55    This assumes that you would like to have the default 20 results per page.
56    If you would like to specify your own amount of results per page, you can
57    specify that like so:
58    
59        {% autopaginate object_list 10 %}
60    
61    Note that this replaces ``object_list`` with the list for the current page, so
62    you can iterate over the ``object_list`` like you normally would.
63    
64
65 6. Now you want to display the current page and the available pages, so
66    somewhere after having used autopaginate, use the paginate inclusion tag:
67    
68        {% paginate %}
69    
70    This does not take any arguments, but does assume that you have already
71    called autopaginate, so make sure to do so first.
72
73
74 That's it!  You have now paginated ``object_list`` and given users of the site
75 a way to navigate between the different pages--all without touching your views.
76
77
78 Optional Settings
79 ------------------
80
81 In django-pagination, there are no required settings.  There are, however, a
82 small set of optional settings useful for changing the default behavior of the
83 pagination tags.  Here's an overview:
84
85 ``PAGINATION_DEFAULT_PAGINATION``
86     The default amount of items to show on a page if no number is specified.
87
88 ``PAGINATION_DEFAULT_WINDOW``
89     The number of items to the left and to the right of the current page to
90     display (accounting for ellipses).
91
92 ``PAGINATION_DEFAULT_ORPHANS``
93     The number of orphans allowed.  According to the Django documentation,
94     orphans are defined as::
95     
96         The minimum number of items allowed on the last page, defaults to zero.
97
98 ``PAGINATION_INVALID_PAGE_RAISES_404``
99     Determines whether an invalid page raises an ``Http404`` or just sets the
100     ``invalid_page`` context variable.  ``True`` does the former and ``False``
101     does the latter.
102 """
103
104 setup(
105     name='django-pagination',
106     version=version,
107     description="django-pagination",
108     long_description=LONG_DESCRIPTION,
109     classifiers=[
110         "Programming Language :: Python",
111         "Topic :: Software Development :: Libraries :: Python Modules",
112         "Framework :: Django",
113         "Environment :: Web Environment",
114     ],
115     keywords='pagination,django',
116     author='Eric Florenzano',
117     author_email='floguy@gmail.com',
118     url='http://django-pagination.googlecode.com/',
119     license='BSD',
120     packages=find_packages(),
121     include_package_data=True,
122     zip_safe=False,
123 )