{ "info": { "author": "@Robpol86", "author_email": "robpol86@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Framework :: Sphinx :: Extension", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: MacOS", "Operating System :: POSIX", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Documentation :: Sphinx", "Topic :: Software Development :: Documentation" ], "description": "========================\nsphinxcontrib-versioning\n========================\n\nSphinx extension that allows building versioned docs for self-hosting.\n\n* Python 2.7, 3.3, 3.4, and 3.5 supported on Linux and OS X.\n* Python 2.7, 3.3, 3.4, and 3.5 supported on Windows (both 32 and 64 bit versions of Python).\n\n\ud83d\udcd6 Full documentation: https://robpol86.github.io/sphinxcontrib-versioning\n\n.. image:: https://img.shields.io/appveyor/ci/Robpol86/sphinxcontrib-versioning/master.svg?style=flat-square&label=AppVeyor%20CI\n :target: https://ci.appveyor.com/project/Robpol86/sphinxcontrib-versioning\n :alt: Build Status Windows\n\n.. image:: https://img.shields.io/travis/Robpol86/sphinxcontrib-versioning/master.svg?style=flat-square&label=Travis%20CI\n :target: https://travis-ci.org/Robpol86/sphinxcontrib-versioning\n :alt: Build Status\n\n.. image:: https://img.shields.io/codecov/c/github/Robpol86/sphinxcontrib-versioning/master.svg?style=flat-square&label=Codecov\n :target: https://codecov.io/gh/Robpol86/sphinxcontrib-versioning\n :alt: Coverage Status\n\n.. image:: https://img.shields.io/pypi/v/sphinxcontrib-versioning.svg?style=flat-square&label=Latest\n :target: https://pypi.python.org/pypi/sphinxcontrib-versioning\n :alt: Latest Version\n\nQuickstart\n==========\n\nInstall:\n\n.. code:: bash\n\n pip install sphinxcontrib-versioning\n\nUsage:\n\n.. code:: bash\n\n sphinx-versioning --help\n sphinx-versioning build --help\n sphinx-versioning push --help\n\n.. changelog-section-start\n\nChangelog\n=========\n\nThis project adheres to `Semantic Versioning `_.\n\n2.2.1 - 2016-12-10\n------------------\n\nAdded\n * Time value of ``html_last_updated_fmt`` will be the last git commit (authored) date.\n\nFixed\n * Unhandled KeyError exception when banner main ref fails pre-build.\n * https://github.com/Robpol86/sphinxcontrib-versioning/issues/26\n * https://github.com/Robpol86/sphinxcontrib-versioning/issues/27\n\n2.2.0 - 2016-09-15\n------------------\n\nAdded\n * Windows support.\n\nFixed\n * https://github.com/Robpol86/sphinxcontrib-versioning/issues/17\n * https://github.com/Robpol86/sphinxcontrib-versioning/issues/3\n\n2.1.4 - 2016-09-03\n------------------\n\nFixed\n * banner.css being overridden by conf.py: https://github.com/Robpol86/sphinxcontrib-versioning/issues/23\n\n2.1.3 - 2016-08-24\n------------------\n\nFixed\n * Stopped blocking users from overriding their layout.html. Using another approach to inserting the banner.\n\n2.1.2 - 2016-08-24\n------------------\n\nFixed\n * Cloning from push remote instead of origin. If HTML files are pushed to another repo other than origin it doesn't\n make sense to clone from origin (previous files won't be available).\n\n2.1.1 - 2016-08-23\n------------------\n\nAdded\n * Command line option: ``--push-remote``\n\nFixed\n * Copy all remotes from the original repo to the temporarily cloned repo when pushing built docs to a remote.\n Carries over all remote URLs in case user defines a different URL for push vs fetch.\n\n2.1.0 - 2016-08-22\n------------------\n\nAdded\n * Option to enable warning banner in old/development versions. Similar to Jinja2's documentation.\n * Command line options: ``--banner-greatest-tag`` ``--banner-recent-tag`` ``--show-banner`` ``--banner-main-ref``\n * Jinja2 context functions: ``vhasdoc()`` ``vpathto()``\n * Jinja2 context variables: ``scv_show_banner`` ``scv_banner_greatest_tag`` ``scv_banner_main_ref_is_branch``\n ``scv_banner_main_ref_is_tag`` ``scv_banner_main_version`` ``scv_banner_recent_tag``\n\nChanged\n * Root ref will also be built in its own directory like other versions. All URLs to root ref will point to the one\n in that directory instead of the root. More info: https://github.com/Robpol86/sphinxcontrib-versioning/issues/15\n * Renamed Jinja2 context variable ``scv_is_root_ref`` to ``scv_is_root``.\n\nFixed\n * https://github.com/Robpol86/sphinxcontrib-versioning/issues/13\n * https://github.com/Robpol86/sphinxcontrib-versioning/pull/20\n\nRemoved\n * Jinja2 context variables: ``scv_root_ref_is_branch`` ``scv_root_ref_is_tag``\n\n2.0.0 - 2016-08-15\n------------------\n\nAdded\n * ``--git-root`` command line option.\n * ``--whitelist-branches`` and ``--whitelist-tags`` command line options.\n * ``--local-conf`` and ``--no-local-conf`` command line options.\n * Load settings from **conf.py** file and command line arguments instead of just the latter.\n\nChanged\n * Renamed command line option ``--prioritize`` to ``--priority``.\n * Renamed command line option ``-S`` to ``-s``.\n * ``--chdir``, ``--no-colors``, and ``--verbose`` must be specified before build/push and the other after.\n * ``--sort`` no longer takes a comma separated string. Now specify multiple times (like ``--grm-exclude``).\n * Renamed ``--sort`` value \"chrono\" to \"time\".\n * Reordered positional command line arguments. Moved ``REL_SOURCE`` before the destination arguments.\n * Renamed command line option ``-C`` to ``-N`` for consistency with sphinx-build.\n\nFixed\n * Exposing sphinx-build verbosity to SCVersioning. Specify one ``-v`` to make SCVersioning verbose and two or more\n to make sphinx-build verbose.\n * Using ``--no-colors`` also turns off colors from sphinx-build.\n * https://github.com/Robpol86/sphinxcontrib-versioning/issues/16\n\n1.1.0 - 2016-08-07\n------------------\n\nAdded\n * Exposing Jinja2 context variables: ``scv_is_branch`` ``scv_is_root_ref`` ``scv_is_tag`` ``scv_root_ref_is_branch``\n ``scv_root_ref_is_tag`` ``scv_is_greatest_tag`` ``scv_is_recent_branch`` ``scv_is_recent_ref``\n ``scv_is_recent_tag``\n\nChanged\n * Version links point to that version of the current page if it exists there.\n\nFixed\n * https://github.com/Robpol86/sphinxcontrib-versioning/issues/5\n\n1.0.1 - 2016-08-02\n------------------\n\nFixed\n * easy_install: https://github.com/Robpol86/sphinxcontrib-versioning/issues/4\n\n1.0.0 - 2016-07-23\n------------------\n\n* Initial release.\n\n.. changelog-section-end", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/Robpol86/sphinxcontrib-versioning", "keywords": "sphinx versioning versions version branches tags", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "sphinxcontrib-versioning", "package_url": "https://pypi.org/project/sphinxcontrib-versioning/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/sphinxcontrib-versioning/", "project_urls": { "Homepage": "https://github.com/Robpol86/sphinxcontrib-versioning" }, "release_url": "https://pypi.org/project/sphinxcontrib-versioning/2.2.1/", "requires_dist": null, "requires_python": "", "summary": "Sphinx extension that allows building versioned docs for self-hosting.", "version": "2.2.1" }, "last_serial": 4798168, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "19edc2201a11d2b8e050bcd511a601fa", "sha256": "864d62f8905bca0eff13aa908b6bea10f793eb62fb66cb42ed9edff688614c33" }, "downloads": -1, "filename": "sphinxcontrib-versioning-1.0.0.tar.gz", "has_sig": false, "md5_digest": "19edc2201a11d2b8e050bcd511a601fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17160, "upload_time": "2016-07-24T05:55:54", "url": "https://files.pythonhosted.org/packages/9c/18/aab08f557b4b1b48ac9bd0158cc63a1d7125bbfad158f34377015b3a12b3/sphinxcontrib-versioning-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "9296846352682735744db89c6ec70aff", "sha256": "bc41c5d081646e284bffe9e2706a30f0e33fd543ab98959933eb3499df00f49a" }, "downloads": -1, "filename": "sphinxcontrib-versioning-1.0.1.tar.gz", "has_sig": false, "md5_digest": "9296846352682735744db89c6ec70aff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17840, "upload_time": "2016-08-03T02:48:06", "url": "https://files.pythonhosted.org/packages/d9/c1/ed2c16304fcf662ef2c52b65a3bd07b9ae96ef678f69b3dbd80a4abe7a70/sphinxcontrib-versioning-1.0.1.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "edc5835e54b200fe3bca0f0aa55b7c4c", "sha256": "4bb9330ba41c8bd0cf09e41d16a71f18d560abbb6f05dea438a125588e4de30d" }, "downloads": -1, "filename": "sphinxcontrib-versioning-1.1.0.tar.gz", "has_sig": false, "md5_digest": "edc5835e54b200fe3bca0f0aa55b7c4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18024, "upload_time": "2016-08-08T04:31:01", "url": "https://files.pythonhosted.org/packages/70/d7/0fbb2eaacbfd2740856f35d306e9040a992ed0a0d995c8a143c037169ab7/sphinxcontrib-versioning-1.1.0.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "a5562508ca515f7e9473e6c16f1465a3", "sha256": "1ca0618b7178d94b65095aafabaee3b34d42cbb93962acd0c423baca621fcc73" }, "downloads": -1, "filename": "sphinxcontrib-versioning-2.0.0.tar.gz", "has_sig": false, "md5_digest": "a5562508ca515f7e9473e6c16f1465a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21533, "upload_time": "2016-08-15T07:39:17", "url": "https://files.pythonhosted.org/packages/02/df/fee794d81ee9cd7f0815fc76d38e00643b1cc448daa99d74d7d59db99b27/sphinxcontrib-versioning-2.0.0.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "613844bbcb41682d9368abf5c4f25ccc", "sha256": "a9eebbca8e11d6a9afeadd1afa30360f6b18c616a546fdd9116eb2e7775ad193" }, "downloads": -1, "filename": "sphinxcontrib-versioning-2.1.0.tar.gz", "has_sig": false, "md5_digest": "613844bbcb41682d9368abf5c4f25ccc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23274, "upload_time": "2016-08-22T22:39:49", "url": "https://files.pythonhosted.org/packages/f1/db/ec45b0fb2b30f0da0ec7b7c7ef8c647fadecc2e35f45fb0bb279e8ff1328/sphinxcontrib-versioning-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "fa9d9af1dad33479d85a3d9880357ae1", "sha256": "49a0e3695375444ddf63c12222513adbfeb1efcfd80001499194641103941ce6" }, "downloads": -1, "filename": "sphinxcontrib-versioning-2.1.1.tar.gz", "has_sig": false, "md5_digest": "fa9d9af1dad33479d85a3d9880357ae1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23665, "upload_time": "2016-08-24T00:50:03", "url": "https://files.pythonhosted.org/packages/cf/12/01d9cdd62094a7614e6a09210a9e945a1c0c97d36c969bcde75db4e10c15/sphinxcontrib-versioning-2.1.1.tar.gz" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "34e81a5d189cef9a2674f2816fbdb4d1", "sha256": "4cbb841c85aded1d292b1edec42e31aed7eebfb5f3fd827adb52f595cb5a7ea6" }, "downloads": -1, "filename": "sphinxcontrib-versioning-2.1.2.tar.gz", "has_sig": false, "md5_digest": "34e81a5d189cef9a2674f2816fbdb4d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23799, "upload_time": "2016-08-24T08:08:12", "url": "https://files.pythonhosted.org/packages/fd/a6/9b47dd91b31c894410d7bf7bd9dca4d1c5f3e8afad64d2716ad29c1f52c0/sphinxcontrib-versioning-2.1.2.tar.gz" } ], "2.1.3": [ { "comment_text": "", "digests": { "md5": "8986bdbf655edc4e2124b5c0c6e14fe9", "sha256": "7c7ff1213cf31fef0ac01542156c069249246dc64a29271d12b9709e4d53210f" }, "downloads": -1, "filename": "sphinxcontrib-versioning-2.1.3.tar.gz", "has_sig": false, "md5_digest": "8986bdbf655edc4e2124b5c0c6e14fe9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23802, "upload_time": "2016-08-25T06:27:14", "url": "https://files.pythonhosted.org/packages/ab/db/a3dcf1df2e78c8188c8cde7ebb727ce797d1db9e4239e540479394ccd823/sphinxcontrib-versioning-2.1.3.tar.gz" } ], "2.1.4": [ { "comment_text": "", "digests": { "md5": "897666c950dc1c4fc9ffbf7231bb3e82", "sha256": "adb5c8f43342912504023a39ba76a72856058a8b3508425f3561b0016afb09a9" }, "downloads": -1, "filename": "sphinxcontrib-versioning-2.1.4.tar.gz", "has_sig": false, "md5_digest": "897666c950dc1c4fc9ffbf7231bb3e82", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23918, "upload_time": "2016-09-03T21:02:13", "url": "https://files.pythonhosted.org/packages/80/cb/d90810452d480e000de7531a1843fa68a07bec41f17bb800e174a30ea8a8/sphinxcontrib-versioning-2.1.4.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "832dd3bf432158d048c0469b17d955ca", "sha256": "7ecd01d128b6be1622e91e559b12b737717c35894261971ae97d65451b5264ef" }, "downloads": -1, "filename": "sphinxcontrib-versioning-2.2.0.tar.gz", "has_sig": false, "md5_digest": "832dd3bf432158d048c0469b17d955ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24433, "upload_time": "2016-09-16T03:30:15", "url": "https://files.pythonhosted.org/packages/5d/bc/e7f7eb42904eee9720faf2042b45ac1cb2db8225909a834ebd41550e8536/sphinxcontrib-versioning-2.2.0.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "2b614b32ba7777ba93e807f423a21a73", "sha256": "1a5fe9b4e36020488d0d037fccc0b21aaf71b80425cad42ef4a5e5c3c193d3cd" }, "downloads": -1, "filename": "sphinxcontrib-versioning-2.2.1.tar.gz", "has_sig": false, "md5_digest": "2b614b32ba7777ba93e807f423a21a73", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24979, "upload_time": "2016-12-10T09:45:37", "url": "https://files.pythonhosted.org/packages/62/82/c8ce021417b9a4f9726ff572c3f20825cac8a35cefec00184195d3aec698/sphinxcontrib-versioning-2.2.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "2b614b32ba7777ba93e807f423a21a73", "sha256": "1a5fe9b4e36020488d0d037fccc0b21aaf71b80425cad42ef4a5e5c3c193d3cd" }, "downloads": -1, "filename": "sphinxcontrib-versioning-2.2.1.tar.gz", "has_sig": false, "md5_digest": "2b614b32ba7777ba93e807f423a21a73", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24979, "upload_time": "2016-12-10T09:45:37", "url": "https://files.pythonhosted.org/packages/62/82/c8ce021417b9a4f9726ff572c3f20825cac8a35cefec00184195d3aec698/sphinxcontrib-versioning-2.2.1.tar.gz" } ] }