Metadata-Version: 1.1
Name: djangocms-page-sitemap
Version: 0.8.1
Summary: django CMS page extension to handle sitemap customization
Home-page: https://github.com/nephila/djangocms-page-sitemap
Author: Iacopo Spalletti
Author-email: i.spalletti@nephila.it
License: BSD
Description: ======================
        djangocms-page-sitemap
        ======================
        
        |Gitter| |PyPiVersion| |PyVersion| |Status| |TestCoverage| |CodeClimate| |License|
        
        django CMS page extension to handle sitemap customization
        
        Support Python version:
        
        * Python 2.7, 3.5, 3.6, 3.7
        
        Supported Django versions:
        
        * Django 1.11 to 2.2
        
        Supported django CMS versions:
        
        * django CMS 3.6+
        
        .. note:: djangocms-page-sitemap 0.8 has been relicensed with BSD license.
        
        .. note:: djangocms-page-sitemap 0.7 dropped compatibility with django CMS < 3.6. 0.6.x releases will be made if necessary after 0.6 release.
        
        
        Features
        --------
        
        * Support for changefreq and priority customisation per-page
        * Option to exclude a page from the Sitemap
        * Values are cached
        * django CMS toolbar integration
        * Available on Divio Cloud
        
        
        Quickstart
        ----------
        
        * Install djangocms-page-sitemap::
        
            pip install djangocms-page-sitemap
        
        * Add to ``INSTALLED_APPS`` with ``django.contrib.sitemaps``::
        
            INSTALLED_APPS = [
                ...
                'django.contrib.sitemaps',
                'djangocms_page_sitemap',
            ]
        
        * Add to the urlconf, eventually removing django CMS sitemap::
        
        
            from djangocms_page_sitemap import sitemap_urls
        
            ...
        
            urlpatterns = [
                url(r'^admin/', include(admin.site.urls)),
                ...
                url(r'^', include(sitemap_urls)),
                ...
            ]
        
        * Add the following snippets to the django CMS templates::
        
            {% load robots_index %}
        
            ...
            <head>
            <!-- somewhere in the head tag -->
            {% page_robots %}
            </head>
            ...
        
        * If you need to provide a custom sitemap configuration (for example to add more
          sitemap classes to it, you can append the sitemap url explicitly::
        
            from django.contrib.sitemaps.views import sitemap
            from djangocms_page_sitemap.sitemap import ExtendedSitemap
            from myapp.sitemaps import MySiteSitemap
        
        
            urlpatterns = patterns(
                '',
                ...
                url(r'^sitemap\.xml$', sitemap,
                    {'sitemaps': {
                        'cmspages': ExtendedSitemap, 'myapp': MySiteSitemap,
                    }
                }),
            )
        
        
        * Add the following snippets to the django CMS templates::
        
            {% load robots_index %}
        
             ...
            <head>
            <!-- somewhere in the head tag -->
            {% page_robots %}
            </head>
            ...
        
        Usage
        -----
        
        After installing as above, you will be able to tune the sitemap setting for each page.
        
        A new menu item ``Sitemap properties`` will be available in the page toolbar.
        
        For each page you will be able to set the following flags / values:
        
        * Sitemap changefreq (default: the django CMS default)
        * Sitemap priority (default: 0.5)
        * Include page in sitemap (default: ``True``)
        * Set ``noindex`` value to page robots meta tag
        * Set ``noarchite`` value to page robots meta tag
        * Provide any additional robots meta tag values
        
        page_robots options
        -------------------
        
        ``page_robots`` meta tag accepts the following parameters:
        
        * ``page``: the page to render robots meta tag (default: current page). Can be
          any valid `page lookup`_
        * ``site``: the current site id (default: current site).
        
        Settings
        --------
        
        * PAGE_SITEMAP_CHANGEFREQ_LIST: List of frequency changes
        * PAGE_SITEMAP_DEFAULT_CHANGEFREQ: Default changefrequency (default: django CMS value -monthly-)
        * PAGE_SITEMAP_CACHE_DURATION: Cache duration: same as django CMS menu cache)
        
        
        .. _page lookup: https://docs.django-cms.org/en/reference/templatetags.html#page_lookup
        
        
        .. |Gitter| image:: https://img.shields.io/badge/GITTER-join%20chat-brightgreen.svg?style=flat-square
            :target: https://gitter.im/nephila/applications
            :alt: Join the Gitter chat
        
        .. |PyPiVersion| image:: https://img.shields.io/pypi/v/djangocms-page-sitemap.svg?style=flat-square
            :target: https://pypi.python.org/pypi/djangocms-page-sitemap
            :alt: Latest PyPI version
        
        .. |PyVersion| image:: https://img.shields.io/pypi/pyversions/djangocms-page-sitemap.svg?style=flat-square
            :target: https://pypi.python.org/pypi/djangocms-page-sitemap
            :alt: Python versions
        
        .. |Status| image:: https://img.shields.io/travis/nephila/djangocms-page-sitemap.svg?style=flat-square
            :target: https://travis-ci.org/nephila/djangocms-page-sitemap
            :alt: Latest Travis CI build status
        
        .. |TestCoverage| image:: https://img.shields.io/coveralls/nephila/djangocms-page-sitemap/master.svg?style=flat-square
            :target: https://coveralls.io/r/nephila/djangocms-page-sitemap?branch=master
            :alt: Test coverage
        
        .. |License| image:: https://img.shields.io/github/license/nephila/djangocms-page-sitemap.svg?style=flat-square
           :target: https://pypi.python.org/pypi/djangocms-page-sitemap/
            :alt: License
        
        .. |CodeClimate| image:: https://codeclimate.com/github/nephila/djangocms-page-sitemap/badges/gpa.svg?style=flat-square
           :target: https://codeclimate.com/github/nephila/djangocms-page-sitemap
           :alt: Code Climate
        
        
        
        
        History
        -------
        
        0.8.1 (2020-05-02)
        ++++++++++++++++++
        
        * Relicense under BSD license
        
        0.8.0 (2020-01-12)
        ++++++++++++++++++
        
        * Relicense under BSD license
        
        0.7.0 (2019-08-22)
        ++++++++++++++++++
        
        * Add compatibility with Django 2.2
        * Drop compatibility with Django < 1.11
        * Drop compatibility with django CMS < 3.6
        * Move to django-app-helper
        
        0.6.0 (2019-07-13)
        ++++++++++++++++++
        
        * Drop compatibility with Django < 1.11
        * Drop compatibility with Python 3 < 3.5
        
        0.5.4 (2019-07-13)
        ++++++++++++++++++
        
        * Fix error when page_robots is executed outside a request
        * Fix tox for older environments
        
        0.5.3 (2019-03-09)
        ++++++++++++++++++
        
        * Add Django 2.0, 2.1 support
        * Add django CMS 3.6 support
        * Apply workaround to avoid triggering ``Page.site_id`` deprecation warning
        
        0.5.2 (2018-04-07)
        ++++++++++++++++++
        
        * Make robots_extra not required
        
        0.5.1 (2018-02-27)
        ++++++++++++++++++
        
        * Fix error in migration dependencies
        
        0.5.0 (2018-02-22)
        ++++++++++++++++++
        
        * Add Django 1.11 support
        * Add django CMS 3.5 support
        * Package as Divio Cloud addon
        * Add support for noindex, noarchive robots meta tag
        
        0.4.3 (2019-07-13)
        ++++++++++++++++++
        
        * Fix error when page_robots is executed outside a request
        * Fix tox for older environments
        
        0.4.2 (2019-04-08)
        ++++++++++++++++++
        
        * Add support for noindex, noarchive robots meta tag
        
        0.4.1 (2016-12-02)
        ++++++++++++++++++
        
        * Add Django 1.10 support
        
        0.4.0 (2016-10-26)
        ++++++++++++++++++
        
        * Drop compatibility with django CMS 3.1 and below, Django 1.7 and below
        
        0.3.1 (2015-10-18)
        ++++++++++++++++++
        
        * Improve defaults
        
        0.3.0 (2015-10-18)
        ++++++++++++++++++
        
        * Add Python 3.5
        * Add option to exclude page from sitemap
        
        0.2.0 (2015-08-15)
        ++++++++++++++++++
        
        * Update to support django CMS 3.1
        * Drop support for Django 1.4, 1.5
        * Add support for Django 1.8
        
        0.1.0 (2014-08-26)
        ++++++++++++++++++
        
        * Initial version.
        
Keywords: djangocms-page-sitemap
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 2.1
Classifier: Framework :: Django :: 2.2
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
