{ "info": { "author": "Tarek Ziade", "author_email": "tarek@ziade.org", "bugtrack_url": null, "classifiers": [ "Framework :: Buildout", "Intended Audience :: Developers", "License :: OSI Approved :: Zope Public License", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Topic :: Software Development :: Build Tools", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": ".. contents::\n\n- Code repository: https://github.com/reinout/collective.recipe.sphinxbuilder\n (since June 2016).\n\n- Documentation: http://collectiverecipesphinxbuilder.readthedocs.io .\n\n- Questions and comments to `Reinout van Rees `_\n tarek_at_ziade.org, rok_at_garbas.si, sdouche_at_sdouche.com.\n\n\nDetailed Documentation\n**********************\n\n\n===============\nWhat is Sphinx?\n===============\n\nSphinx is the mainly tool in the Python community to build documentation. See\nhttp://sphinx.pocoo.org.\n\nIt is now used for instance by Python. See http://docs.python.org and many\nothers\n\nSphinx uses reStructuredText, and can be used to write your buildout-based\napplication. This recipe sets everything up for you, so you can provide a\nnice-looking documentation within your buildout, in static html, PDF or even\nepub.\n\nThe fact that your documentation is managed like your code makes it easy to\nmaintain and change it.\n\n\n===========\nQuick start\n===========\n\nTo use the recipe, add in your buildout configuration file\na section like this::\n\n [buildout]\n parts =\n ...\n sphinxbuilder\n ...\n\n [sphinxbuilder]\n recipe = collective.recipe.sphinxbuilder\n source = ${buildout:directory}/docs-source\n build = ${buildout:directory}/docs\n\n\n\nRun your buildout and you will get a few new scripts in the `bin` folder,\ncalled:\n\n - `sphinx-quickstart`, to quickstart sphinx documentation\n - `sphinxbuilder`, script that will\n\nTo quickstart a documentation project run, as you would normaly do with Sphinx::\n\n $ bin/sphinx-quickstart\n\nand anwser few questions and choose `docs-source` as you source folder.\n\nTo build your documentation, just run the sphinx script::\n\n $ bin/sphinxbuilder\n\nThat's it!\n\nYou will get a shiny Sphinx documenation in `docs/html`.\nWrite your documentation, go in `docs-source`.\nEverytime source is modified, `sphinxbuilder` run script again.\n\nA good starting point to write your documentation is:\nhttp://sphinx.pocoo.org/contents.html.\n\n\n=======\nPlone 4\n=======\n\nUsage with Plone 4 is even easier::\n\n [buildout]\n parts =\n ...\n sphinxbuilder\n ...\n\n [sphinxbuilder]\n recipe = collective.recipe.sphinxbuilder\n interpreter = ${buildout:directory}/bin/zopepy\n\nFollow quick-start tutorial and do not forget to add interpreter with\ninstalled eggs to access your sourcecode with Sphinx.\n\n\n=================\nSupported options\n=================\n\nThe recipe supports the following options:\n\n build (default: `docs`)\n Specify the build documentation root.\n\n source (default: `{build-directory}/source`)\n Speficy the source directory of documentation.\n\n outputs (default: `html`)\n Multiple-line value that defines what kind of output to produce.\n Can be `doctest`, `html`, `latex`, `pdf` or `epub`.\n\n script-name (default: name of buildout section)\n The name of the script generated\n\n interpreter\n Path to python interpreter to use when invoking sphinx-builder.\n\n extra-paths\n Extra paths to be inserted into sys.path.\n\n products\n Extra product directories to be extend the Products namespace for\n old-style Zope Products.\n\n\n=============\nExample usage\n=============\n\nThe recipe can be used without any options. We'll start by creating a\nbuildout that uses the recipe::\n\n >>> write('buildout.cfg',\n ... \"\"\"\n ... [buildout]\n ... parts = sphinxbuilder\n ...\n ... [sphinxbuilder]\n ... recipe = collective.recipe.sphinxbuilder\n ... source = collective.recipe.sphinxbuilder:docs\n ... \"\"\")\n\nLet's run the buildout::\n\n >>> print('start ' + system(buildout))\n ... # doctest: +ELLIPSIS\n start Installing sphinxbuilder.\n collective.recipe.sphinxbuilder: writing MAKEFILE..\n collective.recipe.sphinxbuilder: writing BATCHFILE..\n collective.recipe.sphinxbuilder: writing custom sphinx-builder script..\n Generated script '/sample-buildout/bin/sphinx-quickstart'.\n Generated script '/sample-buildout/bin/sphinx-build'.\n Generated script '/sample-buildout/bin/sphinx-apidoc'.\n Generated script '/sample-buildout/bin/sphinx-autogen'...\n\nWhat are we expecting?\n\nA `docs` folder with a Sphinx structure::\n\n >>> docs = join(sample_buildout, 'docs')\n >>> ls(docs)\n - Makefile\n - make.bat\n\nA script in the `bin` folder to build the docs::\n\n >>> bin = join(sample_buildout, 'bin')\n >>> ls(bin)\n - buildout\n - sphinx-apidoc\n - sphinx-autogen\n - sphinx-build\n - sphinx-quickstart\n - sphinxbuilder\n\nThe content of the script is a simple shell script::\n\n >>> script = join(sample_buildout, 'bin', 'sphinxbuilder')\n >>> print(open(script).read())\n #!/bin/bash\n cd ...docs\n make html\n\n >>> print('start ' + system(script))\n start /sample-buildout/bin/sphinx-build -b html -d /sample-buildout/docs/doctrees ...src/collective/recipe/sphinxbuilder/docs /sample-buildout/docs/html\n ...\n\nIf we want `latex`, we need to explicitly define it::\n\n >>> write('buildout.cfg',\n ... \"\"\"\n ... [buildout]\n ... parts = sphinxbuilder\n ...\n ... [sphinxbuilder]\n ... recipe = collective.recipe.sphinxbuilder\n ... source = collective.recipe.sphinxbuilder:docs\n ... outputs =\n ... html\n ... latex\n ... \"\"\")\n >>> print('start ' + system(buildout))\n ... # doctest: +ELLIPSIS\n start Uninstalling sphinxbuilder.\n Installing sphinxbuilder.\n collective.recipe.sphinxbuilder: writing MAKEFILE..\n collective.recipe.sphinxbuilder: writing BATCHFILE..\n collective.recipe.sphinxbuilder: writing custom sphinx-builder script...\n\nLet's see our script now::\n\n >>> cat(script)\n #!/bin/bash\n cd ...docs\n make html\n make latex\n\nFinally let's run it::\n\n >>> print('start ' + system(script))\n start /sample-buildout/bin/sphinx-build -b html -d /sample-buildout/docs/doctrees .../src/collective/recipe/sphinxbuilder/docs /sample-buildout/docs/html\n ...\n \n Build finished. The HTML pages are in /sample-buildout/docs/html.\n ...\n Build finished; the LaTeX files are in /sample-buildout/docs/latex.\n Run `make' in that directory to run these through (pdf)latex...\n \n\nIf we want `pdf`, we need to explicitly define it::\n\n >>> write('buildout.cfg',\n ... \"\"\"\n ... [buildout]\n ... parts = sphinxbuilder\n ...\n ... [sphinxbuilder]\n ... recipe = collective.recipe.sphinxbuilder\n ... source = collective.recipe.sphinxbuilder:docs\n ... outputs =\n ... html\n ... latex\n ... pdf\n ... \"\"\")\n >>> print('start ' + system(buildout))\n ... # doctest: +ELLIPSIS\n start Uninstalling sphinxbuilder.\n Installing sphinxbuilder.\n collective.recipe.sphinxbuilder: writing MAKEFILE..\n collective.recipe.sphinxbuilder: writing BATCHFILE..\n collective.recipe.sphinxbuilder: writing custom sphinx-builder script...\n\nLet's see our script now::\n\n >>> cat(script)\n #!/bin/bash\n cd ...docs\n make html\n make latex\n cd /sample-buildout/docs/latex && make all-pdf\n\nWe will skip running the script in tests, because the PDF builder depends\non libraries which may not be installed.\n\nIf we want `epub`, like pdf we need to explicitly define it::\n\n >>> write('buildout.cfg',\n ... \"\"\"\n ... [buildout]\n ... parts = sphinxbuilder\n ...\n ... [sphinxbuilder]\n ... recipe = collective.recipe.sphinxbuilder\n ... source = collective.recipe.sphinxbuilder:docs\n ... outputs =\n ... html\n ... epub\n ... \"\"\")\n >>> print('start ' + system(buildout))\n ... # doctest: +ELLIPSIS\n start Uninstalling sphinxbuilder.\n Installing sphinxbuilder.\n collective.recipe.sphinxbuilder: writing MAKEFILE..\n collective.recipe.sphinxbuilder: writing BATCHFILE..\n collective.recipe.sphinxbuilder: writing custom sphinx-builder script...\n\nLet's see our script now::\n\n >>> cat(script)\n #!/bin/bash\n cd ...docs\n make html\n make epub\n\nWe can also have the script run any doctests in the docs while building::\n\n >>> write('buildout.cfg',\n ... \"\"\"\n ... [buildout]\n ... parts = sphinxbuilder\n ...\n ... [sphinxbuilder]\n ... recipe = collective.recipe.sphinxbuilder\n ... source = collective.recipe.sphinxbuilder:docs\n ... outputs =\n ... doctest\n ... html\n ... \"\"\")\n >>> print('start ' + system(buildout))\n ... # doctest: +ELLIPSIS\n start Uninstalling sphinxbuilder.\n Installing sphinxbuilder.\n collective.recipe.sphinxbuilder: writing MAKEFILE..\n collective.recipe.sphinxbuilder: writing BATCHFILE..\n collective.recipe.sphinxbuilder: writing custom sphinx-builder script...\n\nLet's see our script now::\n\n >>> cat(script)\n #!/bin/bash\n cd ...docs\n make doctest\n make html\n\nAgain, we will skip running them, this time to avoid a recursive fork bomb. ;)\n\nIf we want `extra-paths`, we can define them as normal paths or as unix\nwildcards (see `fnmatch` module) ::\n\n >>> write('buildout.cfg',\n ... \"\"\"\n ... [buildout]\n ... parts = sphinxbuilder\n ...\n ... [sphinxbuilder]\n ... recipe = collective.recipe.sphinxbuilder\n ... source = collective.recipe.sphinxbuilder:docs\n ... extra-paths =\n ... develop-eggs/\n ... eggs/*\n ... \"\"\")\n >>> print('start ' + system(buildout))\n ... # doctest: +ELLIPSIS\n start Uninstalling sphinxbuilder.\n Installing sphinxbuilder.\n collective.recipe.sphinxbuilder: writing MAKEFILE..\n collective.recipe.sphinxbuilder: writing BATCHFILE..\n collective.recipe.sphinxbuilder: writing custom sphinx-builder script..\n collective.recipe.sphinxbuilder: inserting extra-paths...\n\n\n============\nContributors\n============\n\n * Tarek Ziade, original author\n * Rok Garbas\n * Sidnei da Silva\n * Hans-Peter Locher\n * Domen Kozar\n * Tres Seaver\n * Reinout van Rees, maintainer\n * S\u00e9bastien Douche\n\n\n=======\nChanges\n=======\n\n1.1 (2018-04-24)\n================\n\n- Support other shells than `bash`. [icemac]\n\n\n1.0 (2016-07-11)\n================\n\n- Added windows support. [tkhyn]\n\n\n0.9 (2016-06-27)\n================\n\n- Added automatic testing with travis-ci.org. [reinout]\n\n- Trying to fix install on python 3. [reinout]\n\n- Current code location is\n https://github.com/reinout/collective.recipe.sphinxbuilder [reinout]\n\n- Documentation is now on readthedocs:\n http://collectiverecipesphinxbuilder.readthedocs.io/ [reinout]\n\n0.8.2 (2013-11-28)\n==================\n\n- Prevent a warning when installing with python 3 [reinout]\n\n0.8.1 (2013-11-27)\n==================\n\n- Add Python 3 classifier\n\n0.8.0 (2013-11-27)\n==================\n\n- Added python 3 support [reinout]\n\n0.7.4 (2013-11-15)\n==================\n\n- Update to Buildout 2\n- Cleanup the code to make PEP8 tool happy\n\n0.7.3 (2013-02-16)\n==================\n\n- Patch sphinx-build script to terminate with sys.exit()\n- Add warnings-html makefile option\n- Install sphinx-apidoc and sphinx-autogen scripts\n- Rename all txt files to rst ones\n\n0.7.2 (2012-10-22)\n==================\n\n- Requires Sphinx >= 1.1\n\n0.7.1 (2012-04-29)\n==================\n\n- Add the epub output.\n- Fixed tests:\n - Use required package versions during tests\n - Use standard `doctest` instead of `zope.testing.doctest`.\n\n0.7.0 (2010-09-10)\n==================\n\n- Requires Sphinx >= 1.0\n\n0.6.3.3 (2010-07-15)\n====================\n\n- Added `doctest` option to recipe's `output` options (tseaver)\n\n- Relaxed required version of Sphinx to allow versions later than\n 0.6.4 (but still less than 0.7dev).\n\n0.6.3.2 (2010-02-08)\n====================\n\n- Fixed interpreter options [iElectric]\n\n0.6.3.1 (2009-09-25)\n====================\n\n- Problems with previous release [garbas]\n\n0.6.3 (2009-09-09)\n==================\n\n- Update to Sphinx 0.6.3 [garbas]\n- Simplify sphinxbuilder [garbas]\n- Update documentation [garbas]\n- Interpreter options [iElectric]\n- Added logging [iElectric]\n\n0.5.0 (2008-12-06)\n==================\n\n- Making it compatible with latest sphinx 0.5 [Rok Garbas]\n- Allow for specifying 'product_directories' in order to be able to\n document old-style Zope Products. [Sidnei]\n\n0.2.1 (2008-11-18)\n==================\n\n- Manifest file fixed and making fix release [Rok Garbas]\n\n0.2.0 (2008-11-11)\n==================\n\n- Source tree generated every time under\n parts/ [Rok Garbas]\n- Finds conf options, source, static and template files using\n entry_point 'collective.recipe.sphinxbuilder' [Rok Garbas]\n- Custom source folder at docs/source [Rok Garbas]\n- Build section moved to docs/html, docs/latex [Rok Garbas]\n\n0.1.1 (2008-09-11)\n==================\n\n- Using a sphinx-build local to the environment [Tarek]\n\n0.1.0 (2008-09-10)\n==================\n\n- Initial implementation [Tarek Ziade]\n- Created recipe with ZopeSkel [Tarek Ziade].", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/sdouche/collective.recipe.sphinxbuilder", "keywords": "buildout sphinx", "license": "ZPL", "maintainer": "", "maintainer_email": "", "name": "collective.recipe.sphinxbuilder", "package_url": "https://pypi.org/project/collective.recipe.sphinxbuilder/", "platform": "", "project_url": "https://pypi.org/project/collective.recipe.sphinxbuilder/", "project_urls": { "Homepage": "https://github.com/sdouche/collective.recipe.sphinxbuilder" }, "release_url": "https://pypi.org/project/collective.recipe.sphinxbuilder/1.1/", "requires_dist": null, "requires_python": "", "summary": "ZC.buildout recipe to generate and build Sphinx-based documentation in the buildout.", "version": "1.1" }, "last_serial": 3801508, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "47dcb17083a7424a53ca7194a53baac6", "sha256": "0e670008dcf7df2467b649880ebd5935c2115e183af13c4e5c4580f97d554410" }, "downloads": -1, "filename": "collective.recipe.sphinxbuilder-0.1.0.tar.gz", "has_sig": false, "md5_digest": "47dcb17083a7424a53ca7194a53baac6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21020, "upload_time": "2008-09-10T10:01:37", "url": "https://files.pythonhosted.org/packages/45/46/b34e944f5f2bc001f866c6b7272885665557bf18d23ad6b91c24b1169ae3/collective.recipe.sphinxbuilder-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "e286f2d3af5f8433d5fecd5dbf1cb5b8", "sha256": "04142865cf64e907bc70a1f41f29a6025b1ef2a53b01d61d6580755069387fdd" }, "downloads": -1, "filename": "collective.recipe.sphinxbuilder-0.1.1.tar.gz", "has_sig": false, "md5_digest": "e286f2d3af5f8433d5fecd5dbf1cb5b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21033, "upload_time": "2008-09-11T11:32:36", "url": "https://files.pythonhosted.org/packages/8e/97/242c55497af20115d665205d04dc2aea842cbc1c577007a1910196e10bf5/collective.recipe.sphinxbuilder-0.1.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "a79fec57775ab6f49f890ddb92a028af", "sha256": "81dce44c39a163fc6cb316bfa5fbdea3a94bded8a82226bc4ff720b953f2deaa" }, "downloads": -1, "filename": "collective.recipe.sphinxbuilder-0.2.tar.gz", "has_sig": false, "md5_digest": "a79fec57775ab6f49f890ddb92a028af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21177, "upload_time": "2008-11-11T10:51:16", "url": "https://files.pythonhosted.org/packages/f4/bf/991cb4e149210d652732f4e63a5e7c0efe88572ab76909b710b7a94a1b0d/collective.recipe.sphinxbuilder-0.2.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "7213c9ff15c2e963b79744a9883cfb22", "sha256": "a13d732a4168b0fee8535227f4257bbd2a1dc897f29b9d5e086e3b50715edf37" }, "downloads": -1, "filename": "collective.recipe.sphinxbuilder-0.2.1.tar.gz", "has_sig": false, "md5_digest": "7213c9ff15c2e963b79744a9883cfb22", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21605, "upload_time": "2008-11-18T12:38:50", "url": "https://files.pythonhosted.org/packages/01/8c/4609c20643696303cef2279f6c71b9cdb93c0209b428dd9df5100779dafc/collective.recipe.sphinxbuilder-0.2.1.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "a82ebbedccce2621d8f9a09df87d9e95", "sha256": "12de80c20f853ddced5f8020e5e958a046992e20d47bb6bf6cc273779c1019d2" }, "downloads": -1, "filename": "collective.recipe.sphinxbuilder-0.5.0.tar.gz", "has_sig": false, "md5_digest": "a82ebbedccce2621d8f9a09df87d9e95", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22044, "upload_time": "2008-12-06T19:54:03", "url": "https://files.pythonhosted.org/packages/a2/b1/859af20f69bf71829d7ea883369954da260d444c8da128f76d59b39981b3/collective.recipe.sphinxbuilder-0.5.0.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "861d2b98a3ff3509191e406598601a27", "sha256": "ed5a8bce8d319a2f3be3dd2ce48dd51bd28ea2982107830ab6de6a7a24a6004f" }, "downloads": -1, "filename": "collective.recipe.sphinxbuilder-0.6.3.tar.gz", "has_sig": false, "md5_digest": "861d2b98a3ff3509191e406598601a27", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24373, "upload_time": "2009-09-09T07:15:10", "url": "https://files.pythonhosted.org/packages/e4/82/cdbe6bf3a8ecd8ff19f51bb82f7b4361e54ad6d4c600467d7d790c3acd90/collective.recipe.sphinxbuilder-0.6.3.tar.gz" } ], "0.6.3.1": [ { "comment_text": "", "digests": { "md5": "452c927ca5ae562d659d932d5c87a224", "sha256": "1391c94d04c79f9efec3354c2bb6f1e94bc75545daa9488cc667001b7aeb9f77" }, "downloads": -1, "filename": "collective.recipe.sphinxbuilder-0.6.3.1.tar.gz", "has_sig": false, "md5_digest": "452c927ca5ae562d659d932d5c87a224", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24610, "upload_time": "2009-09-25T13:59:26", "url": "https://files.pythonhosted.org/packages/fb/60/0756cd70d9e36246d6455c46d2d6ee488929759630f9e7c73ea2da7007d8/collective.recipe.sphinxbuilder-0.6.3.1.tar.gz" } ], "0.6.3.2": [ { "comment_text": "", "digests": { "md5": "1831d66beef699d95e6f58df49907c2e", "sha256": "2299115fc933782e65d06470e738492252a73e614e342cc1448112351a31ded4" }, "downloads": -1, "filename": "collective.recipe.sphinxbuilder-0.6.3.2-py2.6.egg", "has_sig": false, "md5_digest": "1831d66beef699d95e6f58df49907c2e", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 20293, "upload_time": "2010-02-08T22:04:22", "url": "https://files.pythonhosted.org/packages/93/6b/e3124fb0fd36cb35e61a3bb2883373ddc98d3b84f9b4c45229f95a944471/collective.recipe.sphinxbuilder-0.6.3.2-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "f055ba6a7bcd4f67fe53a901429d7a08", "sha256": "96dd4d43c4e3bce5c247a03e3b4ad6fbdc1de8ba73a3fa6d74d2cdd6567cc45c" }, "downloads": -1, "filename": "collective.recipe.sphinxbuilder-0.6.3.2.tar.gz", "has_sig": false, "md5_digest": "f055ba6a7bcd4f67fe53a901429d7a08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13301, "upload_time": "2010-02-08T22:04:22", "url": "https://files.pythonhosted.org/packages/c4/54/766499ea403990dbe69dcda59308fd796e27ec64ae3fc4e943a3c840d679/collective.recipe.sphinxbuilder-0.6.3.2.tar.gz" } ], "0.6.3.3": [ { "comment_text": "", "digests": { "md5": "558c379a9c22e8918d8791dc59bb0d44", "sha256": "36ec36eec5856f41cbc1eed32d876b694132b86c7350aa968cf19df132e64014" }, "downloads": -1, "filename": "collective.recipe.sphinxbuilder-0.6.3.3-py2.7.egg", "has_sig": false, "md5_digest": "558c379a9c22e8918d8791dc59bb0d44", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 21422, "upload_time": "2010-07-15T17:30:28", "url": "https://files.pythonhosted.org/packages/2d/01/4ec17e4643cd3eaeb72fa9522153c028fc5fdcb5ef584d150966697f392e/collective.recipe.sphinxbuilder-0.6.3.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "d5c55132dc45f90b47a14ab9c5e735bf", "sha256": "c103fbeefb5fff8ce776b03c95eb46b3bb32f8afa7cd42f96d3ca9941e20310e" }, "downloads": -1, "filename": "collective.recipe.sphinxbuilder-0.6.3.3.tar.gz", "has_sig": false, "md5_digest": "d5c55132dc45f90b47a14ab9c5e735bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14448, "upload_time": "2010-07-15T17:30:28", "url": "https://files.pythonhosted.org/packages/5f/89/cc5c9d662a83e94779a9c97e219652a3894b26775af4983132292ae4415b/collective.recipe.sphinxbuilder-0.6.3.3.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "0f9c668efd9fec70739c1b200b4c01c2", "sha256": "2cd1b2f130a66dc4995c3388df4832095e45189ec203f2fc67e4be88fa7a3c8b" }, "downloads": -1, "filename": "collective.recipe.sphinxbuilder-0.7.0.tar.gz", "has_sig": false, "md5_digest": "0f9c668efd9fec70739c1b200b4c01c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14436, "upload_time": "2010-10-18T17:29:36", "url": "https://files.pythonhosted.org/packages/cc/74/682f5eec88b809c6098d3d9591b10e9b8d39f986adcabcb7579a46724128/collective.recipe.sphinxbuilder-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "fab32f9c8ed81c5711566830f0210c83", "sha256": "674d4c0c69724e632d0bab34ed4fa4f18febf7b7b18965b5e46258e2a7dc6bb0" }, "downloads": -1, "filename": "collective.recipe.sphinxbuilder-0.7.1.tar.gz", "has_sig": false, "md5_digest": "fab32f9c8ed81c5711566830f0210c83", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11966, "upload_time": "2012-04-29T15:43:20", "url": "https://files.pythonhosted.org/packages/0d/63/07ed73fd430d9df9086e2d25609e45e3c0fd2bd1a761418728776456e6b1/collective.recipe.sphinxbuilder-0.7.1.tar.gz" } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "69e3f7095b3e2457bab81634388c188e", "sha256": "4deadab7aee59b84f8b51bc9c46b36d2690bf4bdcf5ffe43de8804f042694563" }, "downloads": -1, "filename": "collective.recipe.sphinxbuilder-0.7.3.tar.gz", "has_sig": false, "md5_digest": "69e3f7095b3e2457bab81634388c188e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14869, "upload_time": "2013-02-16T15:44:56", "url": "https://files.pythonhosted.org/packages/f1/b0/1743de0a06ed2949cabf252bc199efaac7eccd5c0efc725a1c9ea48455cd/collective.recipe.sphinxbuilder-0.7.3.tar.gz" } ], "0.7.4": [ { "comment_text": "", "digests": { "md5": "a0a4486077898b59de59123137813435", "sha256": "a0e40d1a2c065b83ca63b58ce8cc4853489389f612ded5f39fb8c7a0164bc8e0" }, "downloads": -1, "filename": "collective.recipe.sphinxbuilder-0.7.4.tar.gz", "has_sig": false, "md5_digest": "a0a4486077898b59de59123137813435", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16959, "upload_time": "2013-11-15T16:39:35", "url": "https://files.pythonhosted.org/packages/03/72/d4f4bbff5a919c424fc92aad1c68690bbe3e43db479ad071469aaeec45e9/collective.recipe.sphinxbuilder-0.7.4.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "66d4f8b5a0397bcc0491c07acd568729", "sha256": "5cf8ea3356654fcfba2e420cc9a11316def514bcea8e4038d1d77738f19310ca" }, "downloads": -1, "filename": "collective.recipe.sphinxbuilder-0.8.0.tar.gz", "has_sig": false, "md5_digest": "66d4f8b5a0397bcc0491c07acd568729", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16561, "upload_time": "2013-11-27T19:27:04", "url": "https://files.pythonhosted.org/packages/7a/10/e2c055ea746671e53ed0fd2228b6622602a9ad0bda9446046f46c637a6a0/collective.recipe.sphinxbuilder-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "d54d911490fd9352ed22b95e5ae3d065", "sha256": "2aab14afe3a5454bddd22a33412f0d34f3bab3cd2e33ceceae74ae41c8460c16" }, "downloads": -1, "filename": "collective.recipe.sphinxbuilder-0.8.1.tar.gz", "has_sig": false, "md5_digest": "d54d911490fd9352ed22b95e5ae3d065", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16634, "upload_time": "2013-11-27T19:40:24", "url": "https://files.pythonhosted.org/packages/74/49/c1691f6e6f946408edd2bc02475b277f06728c71f4fdcbc0ae40a465314d/collective.recipe.sphinxbuilder-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "ff464f98eb5a375d51ca885deb8db9dd", "sha256": "a3ff7bb911ebb64e86db2855469daeb389f956a913a81b123b6907a8dcef73ef" }, "downloads": -1, "filename": "collective.recipe.sphinxbuilder-0.8.2.tar.gz", "has_sig": false, "md5_digest": "ff464f98eb5a375d51ca885deb8db9dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16683, "upload_time": "2013-11-28T07:16:40", "url": "https://files.pythonhosted.org/packages/fe/6c/31b0a11666bb46e566cd10b5a5d6c747f4cf5b655e9a312561f2a87a322d/collective.recipe.sphinxbuilder-0.8.2.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "89c6444b228dcc2110bc8bd836141f3a", "sha256": "6d258e88edab0c7e25655e21a2ee509a61349a62ef1121a4ea06aa196f12bf3b" }, "downloads": -1, "filename": "collective.recipe.sphinxbuilder-0.9.tar.gz", "has_sig": false, "md5_digest": "89c6444b228dcc2110bc8bd836141f3a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19573, "upload_time": "2016-06-27T21:52:17", "url": "https://files.pythonhosted.org/packages/b2/72/50e95c074c3367abe0be0dcf35dc621552a19e6be859edfcfed360a3b046/collective.recipe.sphinxbuilder-0.9.tar.gz" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "bbbabdd37bfc92caa86b88ce738ef727", "sha256": "2f0c7749914532a527c088af2b34cd9059db1e59163e56740f5da9bd46b72350" }, "downloads": -1, "filename": "collective.recipe.sphinxbuilder-1.0.tar.gz", "has_sig": false, "md5_digest": "bbbabdd37bfc92caa86b88ce738ef727", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19667, "upload_time": "2016-07-11T08:08:14", "url": "https://files.pythonhosted.org/packages/a8/c8/c088826735252c9a5ab54cae16ba07e037d535ba8186155edae2daa62a48/collective.recipe.sphinxbuilder-1.0.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "60bc32d182ed915cd02fa79a6651068a", "sha256": "8e07cf07a783cb8787e39a0efb49c7b3957ef7ef956f7a5af100a8da130654f9" }, "downloads": -1, "filename": "collective.recipe.sphinxbuilder-1.1.tar.gz", "has_sig": false, "md5_digest": "60bc32d182ed915cd02fa79a6651068a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19870, "upload_time": "2018-04-24T06:52:06", "url": "https://files.pythonhosted.org/packages/3d/78/cb35687ab20e6bed0c0088fd707a6b8287d672816a5dc2eefe7de79e4eaa/collective.recipe.sphinxbuilder-1.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "60bc32d182ed915cd02fa79a6651068a", "sha256": "8e07cf07a783cb8787e39a0efb49c7b3957ef7ef956f7a5af100a8da130654f9" }, "downloads": -1, "filename": "collective.recipe.sphinxbuilder-1.1.tar.gz", "has_sig": false, "md5_digest": "60bc32d182ed915cd02fa79a6651068a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19870, "upload_time": "2018-04-24T06:52:06", "url": "https://files.pythonhosted.org/packages/3d/78/cb35687ab20e6bed0c0088fd707a6b8287d672816a5dc2eefe7de79e4eaa/collective.recipe.sphinxbuilder-1.1.tar.gz" } ] }