collective.splitsitemap


Namecollective.splitsitemap JSON
Version 1.1.0 PyPI version JSON
download
home_pagehttps://github.com/collective/collective.splitsitemap
SummaryAn add-on for Plone
upload_time2024-03-22 23:10:50
maintainerNone
docs_urlNone
authorEnfold Systems, Inc.
requires_pythonNone
licenseGPL version 2
keywords python plone cms
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage
            .. This README is meant for consumption by humans and pypi. Pypi can render rst files so please do not use Sphinx features.
   If you want to learn more about writing documentation, please check out: http://docs.plone.org/about/documentation_styleguide.html
   This text does not appear on pypi or github. It is a comment.

.. image:: https://travis-ci.org/collective/collective.splitsitemap.svg?branch=master
    :target: https://travis-ci.org/collective/collective.splitsitemap

.. image:: https://coveralls.io/repos/github/collective/collective.splitsitemap/badge.svg?branch=master
    :target: https://coveralls.io/github/collective/collective.splitsitemap?branch=master
    :alt: Coveralls

.. image:: https://img.shields.io/pypi/v/collective.splitsitemap.svg
    :target: https://pypi.python.org/pypi/collective.splitsitemap/
    :alt: Latest Version

.. image:: https://img.shields.io/pypi/status/collective.splitsitemap.svg
    :target: https://pypi.python.org/pypi/collective.splitsitemap
    :alt: Egg Status

.. image:: https://img.shields.io/pypi/pyversions/collective.splitsitemap.svg?style=plastic   :alt: Supported - Python Versions

.. image:: https://img.shields.io/pypi/l/collective.splitsitemap.svg
    :target: https://pypi.python.org/pypi/collective.splitsitemap/
    :alt: License


collective.splitsitemap
#######################

By default, Plone creates 1 sitemap, following the protocol https://www.sitemaps.org/protocol.html

The problem arises on big sites, when the amount of items exceeds 50.000 items. The main goal of this product is to address this, by splitting it into several sitemaps and providing a sitemap index file. In addition it provides some extra advanced features.

Features
********

- Allow to split the sitemap into several sitemaps, and provide a sitemap index
- Allow to generate the sitemap using an external script
- Allow to specify the number of items to include in each split sitemap
- Allow to decide, whether or not "/view" is automatically added in links
- Allow to specify portal types to ignore and not include in the sitemap(s)
- Allow to list specific paths to be ignored and not include in the sitemap(s)


Detailed description
********************

Control panel
=============

This product provides a control panel to configure the different settings. It can be found under the Plone control panel with the name "Split Sitemap Settings" (/@@splitsitemap-settings).

Split sitemaps
==============

This setting allows the sitemap to be split into several and an index sitemap to be generated. The number of items in each sitemap can be tweaked using the "Items per sitemap" setting. When a request to the "sitemap.xml.gz" is performed in your site, and this setting is enabled, several sitemaps will be generated and stored at the location where the sitemap was requested. When the process finishes, the sitemap.xml.gz will be provided with the location of each generated sitemap.

Add /view automatically
=======================

By default, Plone adds "/view" automatically at the end of some URLs, specifically for Files and Images. Unmarking this checkbox, allows to prevent this behavior to happen, only for links in the sitemap. Notice that this setting simply prevents or allows the "/view" to be added automatically, based on how Plone is configured. If Plone does not add "/view" at the end of some URLs, enabling this setting will have no effect.

Generate sitemap from script
============================

This setting allows to use an external script to generate the sitemap, allowing visitors and bots to simply retrieve it without waiting for it to be generated. Notice that if this setting is enabled and the script is not configured to generate the sitemap, then visitors will receive an empty sitemap.xml.gz. Detailed information on the script usage can be found in this README

Specify content types to not include
====================================

From this setting you can choose content types to be completely ignored and not included when generating the sitemap.

Paths to ignore
===============

This setting allows to list specific paths to be ignored from the sitemap. Notice that this path is absolute to the root of the site. If the path is a folder, you can add ":-1" at the end of the path, to ignore that path and all of its children. For example, lets assume this setting is configured as::

    /foo:-1
    /bar

This means that /foo and everything inside will not be included in the sitemap. Additionally /bar will be excluded as well, however if /bar is a folder, its children will not be excluded

External script
***************

This product provides a new zopectl command, which allows to generate sitemaps asynchronously with a cronjob or similar mechanism. Notice that if the "Sitemaps are generated from a script" setting is not enabled, running this script will not improve the sitemap generation in any way. The command is "generate_sitemaps" and its usage is as follows::

  ./bin/instance generate_sitemaps

The script provides 4 optional arguments:

- log_file
- plone_site
- nav_root
- server_url

log_file
========

Specify a file to be used to log the sitemap generation process

plone_site
==========

Specify the id of the Plone site. If not provided, the script will use the first Plone site it finds.

nav_root
========

This is needed, provided your site has different folders used as navigation root (ie. providing the INavigationRoot interface), and you would like to generate a sitemap for that specific folder.

server_url
==========

This setting allows you to generate proper URLs in the sitemap. When running tasks from scripts, there is no way for Plone to know what's the FQDN for your site, or how your Apache/Nginx configuration looks like. Using this setting, you can directly specify your site's URL to be included at the beginning of the link URL. If omitted, the script will attempt to use "SERVER_URL" environment variable.

Example using all parameters
============================

  ``./bin/instance generate_sitemaps --log_file /path/to/sitemap.log --plone_site Plone --nav_root folder-a --server_url https://my-great-site.org``


Installation
************

Install collective.splitsitemap by adding it to your buildout::

    [buildout]

    ...

    eggs =
        collective.splitsitemap


Then running ``bin/buildout``, and finally installing it from the "Add-ons" Plone control panel.


Contribute
**********

- Issue Tracker: https://github.com/collective/collective.splitsitemap/issues
- Source Code: https://github.com/collective/collective.splitsitemap


TODO
****

- Write tests


License
*******

The project is licensed under the GPLv2.


Contributors
============

- Enfold Systems, Inc., info@enfoldsystems.com


Changelog
=========


1.1.0 (2024-03-23)
------------------

- Remove the requirement for Python 2.7
  [cillianderoiste]


1.0.0 (2020-09-25)
------------------

- Initial release.
  [frapell]

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/collective/collective.splitsitemap",
    "name": "collective.splitsitemap",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "Python Plone CMS",
    "author": "Enfold Systems, Inc.",
    "author_email": "info@enfoldsystems.com",
    "download_url": "https://files.pythonhosted.org/packages/df/61/7b672f359075321de47023624df2267a9653162b670972b311ea2971bb1d/collective.splitsitemap-1.1.0.tar.gz",
    "platform": null,
    "description": ".. This README is meant for consumption by humans and pypi. Pypi can render rst files so please do not use Sphinx features.\n   If you want to learn more about writing documentation, please check out: http://docs.plone.org/about/documentation_styleguide.html\n   This text does not appear on pypi or github. It is a comment.\n\n.. image:: https://travis-ci.org/collective/collective.splitsitemap.svg?branch=master\n    :target: https://travis-ci.org/collective/collective.splitsitemap\n\n.. image:: https://coveralls.io/repos/github/collective/collective.splitsitemap/badge.svg?branch=master\n    :target: https://coveralls.io/github/collective/collective.splitsitemap?branch=master\n    :alt: Coveralls\n\n.. image:: https://img.shields.io/pypi/v/collective.splitsitemap.svg\n    :target: https://pypi.python.org/pypi/collective.splitsitemap/\n    :alt: Latest Version\n\n.. image:: https://img.shields.io/pypi/status/collective.splitsitemap.svg\n    :target: https://pypi.python.org/pypi/collective.splitsitemap\n    :alt: Egg Status\n\n.. image:: https://img.shields.io/pypi/pyversions/collective.splitsitemap.svg?style=plastic   :alt: Supported - Python Versions\n\n.. image:: https://img.shields.io/pypi/l/collective.splitsitemap.svg\n    :target: https://pypi.python.org/pypi/collective.splitsitemap/\n    :alt: License\n\n\ncollective.splitsitemap\n#######################\n\nBy default, Plone creates 1 sitemap, following the protocol https://www.sitemaps.org/protocol.html\n\nThe problem arises on big sites, when the amount of items exceeds 50.000 items. The main goal of this product is to address this, by splitting it into several sitemaps and providing a sitemap index file. In addition it provides some extra advanced features.\n\nFeatures\n********\n\n- Allow to split the sitemap into several sitemaps, and provide a sitemap index\n- Allow to generate the sitemap using an external script\n- Allow to specify the number of items to include in each split sitemap\n- Allow to decide, whether or not \"/view\" is automatically added in links\n- Allow to specify portal types to ignore and not include in the sitemap(s)\n- Allow to list specific paths to be ignored and not include in the sitemap(s)\n\n\nDetailed description\n********************\n\nControl panel\n=============\n\nThis product provides a control panel to configure the different settings. It can be found under the Plone control panel with the name \"Split Sitemap Settings\" (/@@splitsitemap-settings).\n\nSplit sitemaps\n==============\n\nThis setting allows the sitemap to be split into several and an index sitemap to be generated. The number of items in each sitemap can be tweaked using the \"Items per sitemap\" setting. When a request to the \"sitemap.xml.gz\" is performed in your site, and this setting is enabled, several sitemaps will be generated and stored at the location where the sitemap was requested. When the process finishes, the sitemap.xml.gz will be provided with the location of each generated sitemap.\n\nAdd /view automatically\n=======================\n\nBy default, Plone adds \"/view\" automatically at the end of some URLs, specifically for Files and Images. Unmarking this checkbox, allows to prevent this behavior to happen, only for links in the sitemap. Notice that this setting simply prevents or allows the \"/view\" to be added automatically, based on how Plone is configured. If Plone does not add \"/view\" at the end of some URLs, enabling this setting will have no effect.\n\nGenerate sitemap from script\n============================\n\nThis setting allows to use an external script to generate the sitemap, allowing visitors and bots to simply retrieve it without waiting for it to be generated. Notice that if this setting is enabled and the script is not configured to generate the sitemap, then visitors will receive an empty sitemap.xml.gz. Detailed information on the script usage can be found in this README\n\nSpecify content types to not include\n====================================\n\nFrom this setting you can choose content types to be completely ignored and not included when generating the sitemap.\n\nPaths to ignore\n===============\n\nThis setting allows to list specific paths to be ignored from the sitemap. Notice that this path is absolute to the root of the site. If the path is a folder, you can add \":-1\" at the end of the path, to ignore that path and all of its children. For example, lets assume this setting is configured as::\n\n    /foo:-1\n    /bar\n\nThis means that /foo and everything inside will not be included in the sitemap. Additionally /bar will be excluded as well, however if /bar is a folder, its children will not be excluded\n\nExternal script\n***************\n\nThis product provides a new zopectl command, which allows to generate sitemaps asynchronously with a cronjob or similar mechanism. Notice that if the \"Sitemaps are generated from a script\" setting is not enabled, running this script will not improve the sitemap generation in any way. The command is \"generate_sitemaps\" and its usage is as follows::\n\n  ./bin/instance generate_sitemaps\n\nThe script provides 4 optional arguments:\n\n- log_file\n- plone_site\n- nav_root\n- server_url\n\nlog_file\n========\n\nSpecify a file to be used to log the sitemap generation process\n\nplone_site\n==========\n\nSpecify the id of the Plone site. If not provided, the script will use the first Plone site it finds.\n\nnav_root\n========\n\nThis is needed, provided your site has different folders used as navigation root (ie. providing the INavigationRoot interface), and you would like to generate a sitemap for that specific folder.\n\nserver_url\n==========\n\nThis setting allows you to generate proper URLs in the sitemap. When running tasks from scripts, there is no way for Plone to know what's the FQDN for your site, or how your Apache/Nginx configuration looks like. Using this setting, you can directly specify your site's URL to be included at the beginning of the link URL. If omitted, the script will attempt to use \"SERVER_URL\" environment variable.\n\nExample using all parameters\n============================\n\n  ``./bin/instance generate_sitemaps --log_file /path/to/sitemap.log --plone_site Plone --nav_root folder-a --server_url https://my-great-site.org``\n\n\nInstallation\n************\n\nInstall collective.splitsitemap by adding it to your buildout::\n\n    [buildout]\n\n    ...\n\n    eggs =\n        collective.splitsitemap\n\n\nThen running ``bin/buildout``, and finally installing it from the \"Add-ons\" Plone control panel.\n\n\nContribute\n**********\n\n- Issue Tracker: https://github.com/collective/collective.splitsitemap/issues\n- Source Code: https://github.com/collective/collective.splitsitemap\n\n\nTODO\n****\n\n- Write tests\n\n\nLicense\n*******\n\nThe project is licensed under the GPLv2.\n\n\nContributors\n============\n\n- Enfold Systems, Inc., info@enfoldsystems.com\n\n\nChangelog\n=========\n\n\n1.1.0 (2024-03-23)\n------------------\n\n- Remove the requirement for Python 2.7\n  [cillianderoiste]\n\n\n1.0.0 (2020-09-25)\n------------------\n\n- Initial release.\n  [frapell]\n",
    "bugtrack_url": null,
    "license": "GPL version 2",
    "summary": "An add-on for Plone",
    "version": "1.1.0",
    "project_urls": {
        "Homepage": "https://github.com/collective/collective.splitsitemap",
        "PyPI": "https://pypi.python.org/pypi/collective.splitsitemap",
        "Source": "https://github.com/collective/collective.splitsitemap",
        "Tracker": "https://github.com/collective/collective.splitsitemap/issues"
    },
    "split_keywords": [
        "python",
        "plone",
        "cms"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f7224c11ffe112627686ad2a95ff93863c9152e3069581f148aecf257f4ff98",
                "md5": "9872fe797509a318f584eea85ff149e2",
                "sha256": "36b3f605070563987d555fb0f7d3b944f40bdb2311f457ab65e61b2fd5de88ea"
            },
            "downloads": -1,
            "filename": "collective.splitsitemap-1.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "9872fe797509a318f584eea85ff149e2",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 34966,
            "upload_time": "2024-03-22T23:10:48",
            "upload_time_iso_8601": "2024-03-22T23:10:48.413898Z",
            "url": "https://files.pythonhosted.org/packages/5f/72/24c11ffe112627686ad2a95ff93863c9152e3069581f148aecf257f4ff98/collective.splitsitemap-1.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "df617b672f359075321de47023624df2267a9653162b670972b311ea2971bb1d",
                "md5": "eb9ab67b7817b7fd570102a18096938b",
                "sha256": "8c8b4bc230cd810d5fd546988eaa28645d9fc2a93fdbeefeb59b0dff61d6ba6f"
            },
            "downloads": -1,
            "filename": "collective.splitsitemap-1.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "eb9ab67b7817b7fd570102a18096938b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 31017,
            "upload_time": "2024-03-22T23:10:50",
            "upload_time_iso_8601": "2024-03-22T23:10:50.585058Z",
            "url": "https://files.pythonhosted.org/packages/df/61/7b672f359075321de47023624df2267a9653162b670972b311ea2971bb1d/collective.splitsitemap-1.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-22 23:10:50",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "collective",
    "github_project": "collective.splitsitemap",
    "travis_ci": true,
    "coveralls": true,
    "github_actions": false,
    "requirements": [],
    "tox": true,
    "lcname": "collective.splitsitemap"
}
        
Elapsed time: 0.20733s