Metadata-Version: 1.1
Name: django-sitemapper
Version: 1.0.0-beta.2
Summary: A small Django app to manage sitemap.xml overrides on a per-object basis
Home-page: https://bitbucket.org/mhurt/django-sitemapper/
Author: Mike Hurt
Author-email: mike@mhtechnical.net
License: MIT License
Description: django-sitemapper
        =================
        
        A small Django app to manage sitemap.xml overrides on a per-object basis.
        
        Brief installation notes are given below, but see our
        `online documentation <http://django-sitemapper.readthedocs.org/en/latest/>`_
        for more details.
        
        .. image:: https://readthedocs.org/projects/django-sitemapper/badge/?version=latest
           :target: http://django-sitemapper.readthedocs.org/en/latest/
           :alt: Documentation Status
        
        
        
        
        Requirements
        ------------
        
        Django 1.4.2 or greater, Python 2.7 or greater.
        
        
        Installation
        ------------
        
        Use your favorite Python installer to install it from PyPI::
        
            $ pip install django-sitemapper
        
        If you are using ``pip`` version 1.4 or later you'll need to explicitly allow pre-release installation::
        
            $ pip install --pre django-sitemapper
        
        Or get the source from the application site::
        
            $ hg clone https://bitbucket.org/mhurt/django-sitemapper
            $ cd django-sitemapper
            $ python setup.py install
        
        
        Configuration
        -------------
        
        Add ``"sitemapper"`` to your ``INSTALLED_APPS`` setting like this::
        
            INSTALLED_APPS = {
              ...
              'sitemapper'
            }
        
        For Django 1.7 users, run ``python manage.py migrate`` to create the
        models. Otherwise simply run ``python manage.py syncdb``.
        
        
        Setting up a sitemap
        --------------------
        
        Create a ``sitemaps.py`` file within your app directory and add the following
        (replacing MyModel with whatever you called yours)::
        
            # sitemaps.py
            from sitemapper.mixins import Sitemap
            from .models import MyModel
        
        
            class MyModelSitemap(Sitemap):
        
                # Set some defaults for your model's sitemap...
                default_changefreq = 'weekly'
                default_priority = 0.5
        
                # ... and the queryset you want to use...
                queryset = MyModel.objects.all()
        
                # ... and some means to access the last-modified timestamp.
                def lastmod(self, obj):
                    return obj.lastmodified
        
        From this point onwards you can use ``MyModelSitemap`` as you would any other
        sitemaps instance. See
        `Django's sitemaps documentation <https://docs.djangoproject.com/en/dev/ref/contrib/sitemaps/>`_
        for how to wire this up with your urlconf.
        
        
        Contribute
        ----------
        
        - Issue Tracker: https://bitbucket.org/mhurt/django-sitemapper/issues
        - Source Code: https://bitbucket.org/mhurt/django-sitemapper/
        
        
        License
        -------
        
        The project is licensed under the MIT license.
        
        
        Release Notes
        -------------
        
        
        1.0.0-beta.2
        ~~~~~~~~~~~~
        
        - **Schema**: ``SitemapEntry.priority`` and ``SitemapEntry.changefreq`` are now nullable.
        
        - Fixed: admin select widget issue for SitemapEntry.priority values of decimal integers (i.e. '0.0' and '1.0')
        
        - Changed: Refactored ``Sitemap.priority()`` and ``Sitemap.changefreq()`` methods.
        
        - New: Added support for South migrations.
        
        - New: Support Django 1.4.2 and greater.
        
        
        
        
        1.0.0-beta.1
        ~~~~~~~~~~~~
        
        - **Backwards Incompatible**: Removed ``sitemapper.SitemappedModel`` mixin. 
        
        - Changed: ``sitemapper.mixins.Sitemap`` now handles all lookups internally, and more efficiently.
        
        - New: Support Django 1.5 and greater.
        
        There will be at least one more beta release before v1.0 final. I'll be adding
        more tests and adding to the documentation but the API should remain stable
        from this point.
        
        If you have any problems, or suggestions, re this project please do get
        involved via the
        `issue tracker <https://bitbucket.org/mhurt/django-sitemapper/issue>`_.
        
Keywords: python django sitemap.xml
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
