{
"info": {
"author": "Cris Ewing",
"author_email": "cris@crisewing.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Framework :: Plone",
"Framework :: Zope2",
"Framework :: Zope3",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content"
],
"description": ".. contents ::\n\nIntroduction\n============\n\nZopeSkel provides a collection of project templates for Plone and Zope\ndevelopment projects.\n\nZopeSkel uses the `paster `_ Python library\ninternally.\n\nThe ABCs of typical Plone development\n=====================================\n\nFor the typical developer working on a plone project, the following path is\nrecommended:\n\n* Install ZopeSkel package to virtualenv, or otherwise\n isolated from system Python installation, on your local computer.\n\n* Create a new Plone 4 development installation using the\n ``plone4_buildout`` template.\n\n* Create a new logic package for the content types, forms and logic of the\n site. This can be done using the\n `Dexterity ZopeSkel template `_\n (included in ``plone4_buildout``).\n\n* Create a new theme package for the site. This can be done using the\n `XDV template `_\n (included in ``plone4_buildout``).\n\n* Test and develop on your local computer until everything is perfect.\n\n* Put created packages under source code sversion control (Subversion, Git).\n\n* Create a Plone installation on the production server. For this step the\n Plone Unified installer is the preferred method of building a distribution.\n\n* Install your site customization packages on the production server.\n\nInstalling ZopeSkel\n====================\n\nZopeSkel can be installed in one of two ways: with `buildout\n`_ or with `virtualenv `_.\n\n.. note ::\n\n Despite existing documentation to the contrary, it is not recommended to\n install ZopeSkel in your system python.\n\nBuildout installation\n---------------------------\n\nHere are instructions how to include ZopeSkel as a part of your\nlocal ``buildout.cfg``.\n\n* You can use zopeskel to add new projects to your buildout ``src/`` folder.\n\n* You can use code skeleton local commands to add more content to your\n package.\n\n.. note ::\n\n The ``plone4_buildout`` template has ZopeSkel and paster support out of\n the box and this is not needed if you used ``plone4_buildout`` to create\n your ``buildout.cfg``.\n\nAdd to your ``buildout.cfg``::\n\n parts =\n ...\n zopeskel\n\n [zopeskel]\n # installs paster and Zopeskel\n recipe = zc.recipe.egg\n eggs =\n PasteScript\n ZopeSkel\n\nAfter re-running buildout, you will have ``zopeskel`` and ``paster``\ncommands in the ``bin`` directory of your buildout.\n\nVirtualenv installation\n-----------------------\n\nFirst, install virtualenv into your system::\n\n easy_install virtualenv\n\nNext, create a virtual environment with the new ``virtualenv`` command::\n\n virtualenv --no-site-packages --distribute zopeskelenv\n\nOnce virtualenv is finished, you can install zopeskel to your new virtual\nenvironment::\n\n zopeskelenv/bin/easy_install zopeskel\n\nOnce this is complete, you will be left with ``zopeskel`` and ``paster``\ncommands in the ``bin`` directory inside your virtualenv.\n\nAvailable Templates\n===================\n\nTo see details of the available templates::\n\n zopeskel --list\n\nMore info about how zopeskel works::\n\n zopeskel --help\n\nUsing Templates\n===============\n\nCreating a Plone 4 buildout using virtualenv ZopeSkel installation::\n\n source zopeskelenv/bin/activate\n zopeskel plone4_buildout yourfoldername\n\nThe folder created (``yourfoldername``) can be checked in to the versioning\nsystem of your choice. It is now a portable, self-contained, ready-to-build\nPlone site. You can build the system at any time using the following::\n\n cd yourfoldername\n python bootstrap.py\n bin/buildout\n\nThe ``plone4_buildout`` recipe results in a self-contained version of ZopeSkel\ninstalled via the buildout method described above. It thus provides the\n``zopeskel`` and ``paster`` commands inside its ``bin`` folder. You can use these\ncommands inside the buildout to create packages for your new Plone site::\n\n bin/zopeskel plone3_theme src/plonetheme.yourcompanyid\n\nThe command will ask a few questions such as the desired package name and\ndescription, and output a complete package you can immediately start using.\nInteractive help is available by entering \"?\" as a response to any question.\n\n.. note ::\n\n Because ZopeSkel is built on paster you can do anything we describe here\n using the ``paster`` command directly. If you do so, you can gain access to\n certain features of ``paster`` that have been disabled for ``zopeskel``, but\n you also will lose access to many of the nicer features of ``zopeskel``,\n including validation and in-line help.\n\nLocal Commands\n==============\n\nIn addition to project templates, the ZopeSkel system provides local commands.\nLocal commands are context aware commands that help you to add more\nfunctionality to an existing ZopeSkel generated project.\n\n.. note ::\n\n Local commands require using the ``paster`` command directly - the\n ``zopeskel`` command does not support them yet.\n\n.. note ::\n\n Not all ZopeSkel templates provide local commands. In general, if local\n commands are available, you will be informed of the fact as your new\n package is generated.\n\nUsing local commands to create a content type package\n-----------------------------------------------------\n\nTo use local commands you need to first include the paster command in your ``buildout.cfg``\nas instructed above.\n\nStarting inside your Plone buildout, first create a new archetypes add-on::\n\n cd src\n ../bin/zopeskel archetype mycompanyid.mycustomcontenttypes\n\nNext, change directories into your new package and invoke ``paster`` to add a\ncontent type::\n\n cd mycompanyid.mycustomcontenttypes\n ../../bin/paster\n\n Usage: ../../bin/paster COMMAND\n usage: paster [paster_options] COMMAND [command_options]\n\n ...\n\n Commands:\n ...\n\n ... local commands:\n addcontent Adds plone content types to your project\n\n\nAs you can see from the ``paster`` command output, your new package supports a\nlocal command called ``addcontent``. You can use the ``addcontent`` command\nto add new code to your package. As with both ``zopeskel`` and ``paster``,\nyou can use the ``--list`` option to see what local commands are available\nin the context of the package you've created::\n\n ../../bin/paster addcontent --list\n\n Available templates:\n atschema: A handy AT schema builder\n browserlayer: A Plone browserlayer\n contenttype: A content type skeleton\n form: A form skeleton\n formfield: Schema field for a form\n i18nlocale: An i18n locale directory structure\n portlet: A Plone 3 portlet\n view: A browser view skeleton\n zcmlmeta: A ZCML meta directive skeleton\n\nYou can add an archetypes content type for managing lectures::\n\n ../../bin/paster addcontent -t contenttype LectureInfo\n\nThen you can add schema fields to that content type::\n\n ../../bin/paster addcontent -t atschema\n\nLocal commands can be run as many times as needed to create your package.\nYou can iteratively develop your content type, other content types, and\nmore.\n\n.. note ::\n\n When changing your package code, local commands will often change\n GenericSetup XML files (found in the in ``profiles/default`` folder of your\n package). These changes will not appear in Plone/Zope simply by restarting your\n instance. You will usually need to re-install your package in your development\n Plone site if you run any local commands in a package you've already installed.\n\nMore info\n\n* http://collective-docs.plone.org/tutorials/paste.html\n\nDeveloping ZopeSkel\n===================\n\nIf you wish to contribute to the zopeskel project we welcome your\ncontribution. Zopeskel is now distributed with its own built-in buildout, so\nto begin, all you need to do is check out the source, bootstrap with your\ndesired version of python, and run bin/buildout. A couple of things to keep in\nmind while you work:\n\nTesting\n-------\n\nSince version 1.5, ZopeSkel has tests. It's required to run these before you\ncheck in any changes you make. You should run the full test suite in both\nPython 2.4 and Python 2.6, as both versions are in common use among Zope and\nPlone developers. They can be run like so::\n\n bin/test -s zopeskel\n\nPlease ensure that all tests pass in Python 2.4 and Python 2.6 before making\nany checkins to the trunk of zopeskel.\n\nFixing Bugs\n-----------\n\nThere are a number of open issues in the queue at\nhttp://plone.org/products/zopeskel/issues and your help is always welcome in\nclosing any you feel competent to take on. Please note that there is a\nzopeskel mailing list, so if you have any questions about your approach to\nfixing a bug, you should post to the list first.\n\nRunning trunk version\n----------------------\n\nThe easiest way to run the trunk of zopeskel is to check out the code,\nbootstrap the buildout with your favored version of Python, and run\nbin/buildout::\n\n svn co http://svn.plone.org/svn/collective/ZopeSkel/trunk zopeskel\n cd zopeskel\n python2.6 bootstrap.py\n ...\n bin/buildout\n\nMore info\n=========\n\nIssue tracker\n\n* http://plone.org/products/zopeskel/issues\n\nPlone and ZopeSkel related documentation\n\n* http://collective-docs.plone.org/tutorials/paste.html\n\nSource code\n\n* http://svn.plone.org/svn/collective/ZopeSkel/trunk\n\nMailing List\n\n* https://lists.plone.org/mailman/listinfo/zopeskel\n\nPlease contribute by submitting patches for what you consider 'best of\nbreed' file layouts for starting Zope projects.\n\nChangelog\n=========\n\n2.21.1 - October 6, 2011\n------------------------\n\n* fixing bad bad release fixer [cewing]\n\n2.21.1 - October 6, 2011\n------------------------\n\n* fixing bad release [cewing]\n\n2.21 - October 6, 2011\n----------------------\n\n* Formatting changes, pep8 fixes, add buildout template warning to\n plone4_buildout [cewing]\n\n* Updated default Plone 3 version to 3.3.6 [cewing]\n\n* Fixed some wording and made the instructions for using zopeskel in buildout\n line up with the unified installer method. We should reduce the number of\n 'conflicting' ways we have displayed in the wild. [cewing]\n\n* Fixed plone4_buildout of trying to checkout collective.docs from the old \n location [miohtama]\n\n* Bumped Plone version to 4.1 [miohtama]\n\n2.20 - August 9, 2011\n---------------------\n\n* Remove buildout.threatlevel extension from plone4_buildout. [davisagli]\n\n* Made plone4_buildout simpler: now it only asks for Plone version\u00a0[miohtama]\n\n* Various references to Internet documentation [miohtama]\n\n* Created a recommended path how ZopeSkel templates should be used to create \n a new Plone site project [miohtama]\n\n* Bumped Plone 4 version to 4.0.5 [miohtama]\n\n* Edit plone3_buildout help text, fixes:\n http://plone.org/products/zopeskel/issues/59\n [aclark]\n\n2.19 - January 21, 2011\n--------------------------\n\n* In every setup.py, replace '%3A' with ':', making list_classifier url an url\n which can actually be used.\n [thet]\n\n* Added plone4_buildout [miohtama]\n\n* Improvements to README [miohtama]\n\n2.18 - September 30, 2010\n-------------------------\n\n* Add bin/zopeskel --version flag. Reports current version of zopeskel\n (http://plone.org/products/zopeskel/issues/48)\n [cewing]\n\n* plone3_buildout: use Plone 3.3.5 by default.\n [maurits]\n\n* Fixed a problem with the generic setup profile in plone templates in which a\n profile was registered in zcml, but no profiles directory was created.\n (http://plone.org/products/zopeskel/issues/46)\n [cewing]\n\n* use i18n:domain plone for portlet title so it need not be translated twice\n (http://plone.org/products/zopeskel/issues/44)\n [fRiSi]\n\n* use the correct name of package, so it can be used in package with 2 dots or\n 1 dots in package name\n [lucmult]\n\n2.17 - June 14, 2010\n--------------------\n\n* Added a pin for PasteScript>=1.7.2. This solves an issue where using zopeskel\n with an early version of PasteScript resulted in a method signature mismatch\n on the paster command 'challenge' method. Fixes issue #42\n (http://plone.org/products/zopeskel/issues/42)\n [cewing]\n\n* Fixed lingering problem in Archetypes template with registering a 'locales'\n directory before one is created. Users now need to add an i18nlocale via\n addcontent in order to get this directory and have it registered via zcml.\n [cewing]\n\n* Fixed dependency in Archetypes template doctests on the presence of the log-in\n portlet. Tests now open the 'login_form' instead. Resolves issue #40\n (http://plone.org/products/zopeskel/issues/40)\n [cewing]\n\n* Added new browserlayer localcommand for plone and archetype templates.\n [marcosfromero]\n\n* Added stub locales directory for plone3_theme template, resolving issue #33\n (http://plone.org/products/zopeskel/issues/33)\n [cewing]\n\n* Set the GenericSetup profile version number in the generated\n metadata.xml to 1000, which is better for the alphabetical ordering\n that GS does.\n [maurits]\n\n* Added \"environment-vars = zope_i18n_compile_mo_files true\" to\n plone3_buildout template. This is enabled only for Plone 4 (eggifiedzope is\n true).\n [vincentfretin]\n\n2.16 - March 22, 2010\n---------------------\n\n* Fixed syntax error in generated portlet constructor code\n [ajung]\n\n* Added a new 'BoundedIntVar' variable type. It validates that the provided\n argument is both an integer and between provided min and max values (inclusive\n on both ends).\n [cewing]\n\n* Updated archetype and plone3_portlet templates to comply with pep8 and\n pyflakes validation at all stages of a skeleton build process. Resolves the\n issue here: (http://plone.org/products/zopeskel/issues/24)\n [cewing]\n\n* Added explanatory text to the plone_hosting template regarding the fact that\n it is unsuitable for use with plone versions later than 3.1.7, fixed\n http://plone.org/products/zopeskel/issues/25\n [cewing]\n\n* Fixed the problem with generated archetypes content type meta_type names\n documented here:\n (http://plone.org/products/zopeskel/issues/22)\n [cewing]\n\n* Updated tests for the plone template to include tests for the fixes to message\n factory, zcml sub-package include and i18n translation registration problems\n below\n [cewing]\n\n* Cleaned up a number of issues with defining and importing a package-wide\n MessageFactory in plone template local commands:\n (http://plone.org/products/zopeskel/issues/29)\n [cewing]\n\n* Cleaned up a number of issues with importing sub-package zcml files after\n using local commands in the plone template:\n (http://plone.org/products/zopeskel/issues/28)\n [cewing]\n\n* Fixed an issue with the plone template zcmlmeta local command to ensure that\n the proper directive was inserted into the top-level configure.zcml\n [cewing]\n\n* Fixed the bug in the plone template that caused zcml errors when the\n i18nlocale local command had not been run:\n (http://plone.org/products/zopeskel/issues/26)\n [cewing]\n\n* Improved i18n for portlets\n (http://plone.org/products/zopeskel/issues/31)\n [fRiSi]\n\n* Improved test coverage of the zopeskel script\n [cewing]\n\n* Disallowed use of the paster --svn-repository command due to some basic\n incompatibilities with the way zopeskel is used. The argument is still\n allowed for users via 'paster create'.\n (http://plone.org/products/zopeskel/issues/34\n http://plone.org/products/zopeskel/issues/35)\n [cewing]\n\n* Added a 'Register Profile' question to the plone template so that users can\n have a Generic Setup profile registered in the case that they plan on adding\n things (like portlets) that require a GS Profile to install. Adapted\n downstream templates archetype, plone25_theme and plone3_theme to use the new\n question\n [cewing]\n\n2.15 - January 22, 2010\n-----------------------\n\n* Backed out a few changes from jaroel in favor of retaining working templates\n OOTB\n [cewing]\n\n* Made archetype, plone3_theme and plone3_portlet pass the PEP8 validator and\n pyflakes.\n [jaroel]\n\n* Template summaries (one-line descriptions) were improved.\n [pupq]\n\n* Templates now have an optional help attribute, which is a rich description of\n the template and its purpose. Help has been provided for all the ZopeSkel\n templates.\n [pupq/cewing]\n\n* Variables (questions in templates) now have a human-facing \"title\" attribute\n which can be shown instead of the (uglier + more opaque) actual variable\n name. Titles have been written for questions.\n [pupq]\n\n* Variables now have optional help attribute, which is a rich description of\n the variable. This can be shown in pastescript UIs.\n [pupq]\n\n* Interactive help has been added, so that you can enter \"?\" at any question to\n receive the rich help for that question.\n [cewing]\n\n* \"Modes\" have been implemented--easy, expert, and all--to reduce the number of\n questions posed to beginning users. For example, technical questions (like\n \"namespace package 2\") are now shown only in expert mode.\n [cewing/pupq]\n\n* The project name (eg, \"plone.app.example\") is now split into pieces to become\n the default values for namespace packages names (\"plone\", \"app\", \"example\").\n [pupq]\n\n* Templates can provide an ndot attribute that signals how many namespaces\n (\"dots\") are expected in the project name. When invoked through new zopeskel\n front-end script, names that don't support that pattern are rejected with\n help (eg, creating a plone_app with \"plone.example\" would be rejected, as a\n 2-namespaced-name, \"plone.foo.example\", is expected)\n [pupq]\n\n* Rather than having to use the checkvar() and post() methods, templates can\n now support messages that appear pre-questions and post-generation.\n Appropriate warnings and where-to-go help has been added.\n [cewing]\n\n* Abstract classes for zope2 products and buildouts have been added; this\n simplifies inheritance of common attrs, and provides appropriate places for\n future common logic.\n [pupq]\n\n* A front-end script, 'zopeskel', has been added. This has high-level, friendly\n help, and an improved command line interface for the task of template usage.\n It can provide a friendly list of templates and a verbosely-detailed list of\n templates.\n [pupq/cewing/chrisrossi]\n\n* Users can have a \"$HOME/.zopeskel\" script with default values for questions,\n either on a all-template or template-by-template basis.\n [pupq]\n\n* The \"zopeskel\" script can emit a sample \".zopeskel\" file, for editing.\n [pupq/cbc]\n\n* A simple HTML help generator can produce a listing of templates, fields, and\n subtemplates. This will be useful for maintaining an HTML \"reference guide\"\n to the ZopeSkel templates. Find this in the zopeskel.doctools package.\n [pupq/cbc]\n\n* Currently-failing unit tests were fixed.\n [pupq/cewing]\n\n* New unit tests were written for new features.\n [cewing]\n\n* New and repaired unit tests were added into the default test suite\n [cewing]\n\n* Rather than using a generic var() class for all variables (\"questions\"),\n subclasses for different types of variables--string, boolean, choices,\n etc.--were added. These normalize their own values and provide validation.\n Therefore, users will get earlier/better feedback on inappropriate values.\n [pupq/cewing]\n\n* A proposal for splitting the project into zopeskel.* packages was added.\n [pupq/cbc]\n\n* Where questions were duplicated across different templates, they were\n consolidated for consistency into one place, and referred to from other\n places.\n [pupq]\n\n* A real-time tool for generating graphs of dependencies and template\n inheritance was written, suitable for including in high-level documentation.\n Find this in the zopeskel.doctools package.\n [cbc]\n\n* Use the eggified Zope 2.12.3 for buildouts targeting Plone 4.x.\n Use 2.9.12 for buildouts targeting Plone 2.x.\n [maurits]\n\n* Remove unnecessary 'title' argument from jsregistry.xml example.\n This fixes http://plone.org/products/zopeskel/issues/18.\n [dukebody]\n\n2.14.2 - December 8th, 2009\n---------------------------\n\n* Back out untested, undocumented changes from paris sprint that broke some\n templates\n [MatthewWilkes]\n\n2.14.1 - November 19th, 2009\n----------------------------\n\n* Fix packaging error\n [MatthewWilkes]\n\n2.14 - November 19th, 2009\n--------------------------\n\n* Use the eggified Zope 2.12.1 for buildouts targeting Plone 4.x. Bump 3.x\n default version to 3.3.2.\n [MatthewWilkes]\n\n* Use distribute for Plone buildouts\n [MatthewWilkes]\n\n* Remove extra quotes in a plone_pas template file, which were\n generating a syntax error.\n [dukebody]\n\n\n2.13 - October 3rd, 2009\n------------------------\n\n* Pinned Cheetah to <= 2.2.1 and eliminated install_requires for elementtree\n (markdown not a requirement for Cheetah 2.2.1). Allows zopeskel to easy_install\n with python 2.4. Can remove pinning when markdown is fixed.\n [cbcunc]\n\n* plone3_buildout: added 'fake-zope-eggs = true' to the zope2 part, as\n otherwise you get e.g. 'ImportError: No module named ImplPython'\n when using a plone.recipe.zope2install < 3.0, like pinned by Plone\n 3.2 versions.cfg.\n [maurits]\n\n* Make the Plone 3 buildout template default to Plone 3.3.1.\n [dukebody]\n\n* Modify HISTORY.txt convention in basic_namespace and nested_namespace\n templates. Use now \"1.0dev (unreleased)\" and '-' for changelog items.\n [vincentfretin]\n\n* Fix trove classifiers list url in all setup.py_tmpl\n [vincentfretin]\n\n* Remove old import_steps.xml from profiles/default/ in plone3_theme template,\n the various import step in registered in profile.zcml now.\n [vincentfretin]\n\n* For plone3_theme, plone3_portlet an archetype templates,\n start profile version at 1 to follow current convention.\n [vincentfretin]\n\n* Remove http://download.zope.org/ppix/,\n http://download.zope.org/distribution/, and\n http://effbot.org/downloads from find-links in the plone3_buildout template.\n Only Pypi or http://dist.plone.org/release/${plone_version}\n is really needed.\n Add http://dist.plone.org/thirdparty for alternative location for\n elementree, PILwoTk, markdown, python-ldap.\n [vincentfretin]\n\n\n2.12 - September 23rd, 2009\n---------------------------\n\n* Remove the options fake-zope-eggs=true and\n additional-fake-eggs=ZODB3 in the plone3_buildout template since\n fake-zope-eggs is enabled by default in\n plone.recipe.zope2install>=3.0, with ZODB3 among the default \"fake\n zope eggs\". [dukebody]\n\n* Declare a dependency on elementtree. It's not a direct dependency\n of ZopeSkel, but ZopeSkel depends on Cheetah which depends on\n Markdown, which has an install-time dependency on elementtree but\n doesn't declare that.\n [davisagli]\n\n* remove the custom `egg_info.writer` and keywords for `paster_plugins`\n since this has been an entry point of PasteScript since 1.6.3, using\n the `setup_requires` as per the change log found here:\n http://pythonpaste.org/script/news.html#id4\n\n This solves an issue where the distutils would go into an infinite\n loop when you add a new `install_requires` package\n [claytron]\n\n* plone3_theme: made the generated viewlet.pt not crash when the\n accompanying view has not been changed so has no computed_value.\n Added some inline documentation there and fixed example\n registration. [maurits]\n\n* In the plone3_theme say that we are creating a theme for Plone 3,\n not specifically for 3.0.\n [maurits]\n\n* In the plone template fix the generated INSTALL.txt: when telling\n users to add $project to the eggs, the example snippet should indeed\n add $project and not the $full_package_name.\n [maurits]\n\n* In the plone_app and plone3_portlet templates use the full package\n name instead of the project name in zcml lines in the generated\n INSTALL.txt. The project/package/egg name may be 'silly' when the\n package structure is far/better/name, which means the zcml needs to\n be 'far.better.name'. Thanks to Espen Moe-Nilssen for spotting this.\n [maurits]\n\n* Make the Plone 3 buildout default to Plone 3.2.2.\n [maurits]\n\n* Removed the setup.cfg from all templates. It makes the common operation of\n tagging and releasing packages harder with little benefit. It can be easily\n added by those who know about this particular feature.\n [hannosch]\n\n* Removed the useless `Python Modules` trove classifier from all templates.\n [hannosch]\n\n2.11 - February 5th, 2009\n-------------------------\n\n* Make the Plone 3 buildout default to Plone 3.2.1, and pick up\n ${versions:zope2-url} for Plone > 3.1\n [MatthewWilkes]\n\n* added a version requirement for Cheetah (>1.0)\n [tarek]\n\n* fix zopeskel/docs/localcommands.txt\n [yboussard]\n\n* Modify zopeskel/templates/plone/+namespace_package+/+package+/tests.py_tmpl\n to init egg as product if it is a Zope2 product.\n [yboussard]\n\n* Modify plone3_buildout template to ask for a Plone version. If the version\n is 3.0 or 3.1 it uses the plone install recipe, otherwise it uses the Plone\n egg from the cheeseshop.\n [MatthewWilkes]\n\n* Link to appropriate PyPI pages for recipes used.\n [MatthewWilkes]\n\n* Add a Zope 2 without Plone buildout template.\n [evilbungle]\n\n* Reconciling HISTORY.txt to mirror what can be found at the following:\n http://pypi.python.org/pypi/ZopeSkel/2.10. Release of 2.10 was clobbered\n due to what looks like a merge at r74790.\n [andrewb]\n\n* Update plone2.5_template's buildout.cfg_tmpl to use Zope 2.9.10. This\n release incorporates Hotfix-2008-08-12. Defaulting to a known insecure\n Zope seems unwise for people that may be updating legacy environments into\n buildout, since they're likely to forget to include the hotfix. Url to\n 2.9.10 hard-coded (as opposed to the more elegantly self-aware\n plone.recipe.plone approach) per the practice of a plone.recipe.distros\n plone part.\n [andrewb]\n\n* Nearly at the end of the creation of a ZopeSkel template, the local\n commands available for that template are displayed.\n [jaraco, markvl]\n\n* The Plone template now has local commands. (Basically moved them\n from the archetype templates to plone templates and made them\n available for both.\n [markvl]\n\n* Added base test setup to the archetype template. Added wiring code that\n runs README.txt as a doctest.\n [esartor]\n\n* Added tests to the addcontent contenttype command. These ammend the\n README.txt file for each content type providing basic tests for creating,\n editing and removing instances of the added content type.\n [esartor]\n\n\n2.10 - September 17th, 2008\n---------------------------\n\n* Fixed a small bug that made most templates create a package that was\n* showing twice in the Plone quick\n installer is the top level namespace package was called 'Products'. Bug\n was fixed in the 'plone' template (since version 1.5), now in other ones\n where needed too.\n [davconvent]\n\n\n2.9 - September 1st, 2008\n-------------------------\n\n* Update silva buildout to reflect changes in Silva 2.1 as stable\n version, and 2.2 as development: SilvaLayout is not shipped anymore\n as an extra distribution but integrated in Silva all. Remove\n question, and update buildout.cfg template.\n [thefunny]\n\n\n2.8 - July 31, 2008\n-------------------\n\n* Generate logrotate configuration file using collective.recipe.template\n so it does not need to contain absolute paths. This makes it possible\n to move the generated buildout around, or install it on other machines\n with different filesystem layouts.\n [wichert]\n\n* Also rotate instance1-Z2.log.\n [wichert]\n\n* Update documentation for hosting template to note that logrotate needs\n to be told where to put its status file.\n [wichert]\n\n\n2.7 - July 25, 2008\n-------------------\n\n* Hosting template:\n\n - Switch default Plone version to 3.1.4.\n [wichert]\n\n - Corrected a typo in the logrotate template, which prevented the zeo log\n to be rotated.\n [hannosch]\n\n\n2.6.2 - July 16, 2008\n---------------------\n\n* Hosting template:\n\n - Corrected even more references of instance to instance1 in proxy support\n and logrotate handling.\n [hannosch]\n\n\n2.6.1 - July 16, 2008\n---------------------\n\n* Hosting template:\n\n - Changed the http_port to start at base_port + 10, to make room for\n additional services.\n [hannosch]\n\n - Corrected hide_summary option, to not show the summary twice.\n [hannosch]\n\n2.6 - July 15, 2008\n-------------------\n\n* Hosting template:\n\n - Corrected one last reference of instance to instance1 in the zopepy eggs\n option of the plone_hosting template.\n [hannosch]\n\n2.5 - July 15, 2008\n-------------------\n\n* Hosting template:\n\n - fix test for Varnish-support in the supervisord configuration.\n [wichert]\n\n - Rename the instance part to instance1 and add an instances group. This\n makes it possible to upgrade to multiple instances later on without\n having to break invocations.\n [wichert]\n\n2.4 - July 9, 2008\n------------------\n\n* Restore the cwd after running buildout in the hosting recipe so further\n processing works correctly.\n [wichert]\n\n* Add a hook in the hosting template to not show the summary. This\n can be used by derived templates that want to show their own summary\n or show it at a later point.\n [wichert]\n\n* Set default Plone version to 3.1.3.\n [wichert]\n\n* Added kss plugin template\n [gotcha, jfroche, adrien01]\n\n* Silva layout have been merged with Silva all in the development\n buildout.\n [thefunny]\n\n2.3 - June 24, 2008\n-------------------\n\n* Fix problem in the hosting template: varnish was always enabled\n even if not desired.\n [wichert]\n\n* Added ZopeSkel test layer with the apropriate testSetup and testTearDown.\n The steps in the top of each test file is not anymore needed: delete\n tempdir/plone.example and then cd to tempdir.\n [mustapha]\n\n* Make the zope2product option in the archetype template default to true.\n [mustapha]\n\n* Modified buildout.cf to only test zopeskel.\n [mustapha]\n\n* Fixed the paster test function: overwrite option should default to True for\n the create command.\n [mustapha]\n\n* Added ``use_local_commands`` attribute (a la use_cheetah). A zopeskel\n template that wants to use local commands has to set it to True .\n [mustapha]\n\n* Get rid of zopeskel.txt and use setup.cfg to store the parent template name.\n [mustapha]\n\n* Sub-templates may define a parent_template attribute with the list of\n templates that can use it.\n [mustapha]\n\n* Fixed tests and updated docs.\n [mustapha]\n\nVersion 2.2\n-----------\n\n* Install Plone 3.1.2 by default.\n [wichert]\n\n* Remove useless spans from the portlet template.\n [wichert]\n\n* Add supervisorctl configuration.\n [wichert]\n\n\nVersion 2.1\n-----------\n\n* Revert BaseTemplate usage from the hosting template (changeset\n 57368 from Tarek). It was not used and broke the buildout. This fixes\n http://plone.org/products/zopeskel/issues/8\n [wichert]\n\n* Replace the generic README in the plone_hosting template with documentation\n that is important for deployments.\n [wichert]\n\n* Add log rotation support to the hosting buildout. Merged from Jarn's\n bones package.\n [wichert]\n\n\nVersion 2.0\n-----------\n\n* Switch plone_hosting template to using supervisord to manage processes.\n Merged from Jarn's bones package.\n [wichert]\n\n* Reduced the number of questions to generate an atschema and used\n the MessageFactory instead of declaring an i18n_domain attribute\n [mustapha]\n\n* Fixed missing imports in plone2_theme\n [mustapha]\n\n* Removed unused imports in plone_pas\n [mustapha]\n\n* In plone2.5_theme: when the skinname is empty, replace it with a\n default text, otherwise adding a Plone Site will throw an error when\n displaying the extension profiles.\n [maurits]\n\n* Added note to profiles.zcml of plone2.5_theme that\n five.registerPackage needs Five version 1.4.\n [maurits]\n\n* Added a BUILDBOT.txt file.\n [tarek]\n\n* plone3_portlet: added commented out alternative AddForm for when\n there are no configurable parameters. That was shorter than listing\n all the changes (where we forgot one).\n [maurits]\n\n* Fixed typos in archetyps and plone3 portlets: 'portletBotomLeft'\n should have been 'portletBottomLeft' with two 't's.\n [maurits]\n\n* Made plone3_portlet respect pep8 (and pyflakes).\n [maurits]\n\n* Use 1.0 as default version number for all templates. This is a more sensible\n default than 0.1 since we start of with dev-versions anyway.\n [wichert]\n\n* sub-templates per ZopeSkel template: Only sub-templates related to the parent\n template is visible with the -l option\n [mustapha]\n\n* added -a (--list-all) option to show all subtemplates regardless of the\n current project. Subtemplates that are not for the type of the current\n project are prefixed with N\n [mustapha]\n\n* Fixed the recreation of the paster_plugins.txt metadata file for archetype.\n For now we have to run 2 times the egg_info command to get the paster_plugins\n file recreated (setuptools problem: nice task to fix)\n [mustapha]\n\n* fixed the case of many inner packages: ask the user to choose a packe to\n inject content into if the command is run outside of an inner package\n [mustapha]\n\n* make all ZopeSkel templates that inherits from BaseTemplate addcontent aware\n [mustapha]\n\n* Added plone_pas template for PlonePas projects and many subtemplates\n [mustapha]\n\n* regrouped archetype subtemplates in templates/archetype\n [mustapha]\n\n* added and fixed tests\n [mustapha]\n\n\nVersion 1.10\n------------\n\n* Install Plone 3.1.1 as default option.\n [wichert]\n\n* Fixed a problem with ZopeSkel localcommands when we have multiple\n projects, it was getting the first directory always and sometimes\n the package dir was not the first directory, so when running the\n addcontent in the package it was creating the contents in the wrong\n dir. Thanks to wichert for pointing me this file.\n [dsa]\n\n* Update the hosting template to make running of buildout optional.\n [wichert]\n\n* Update the hosting template to test if a port is already in use and\n abort if so.\n [wichert]\n\n* Update the hosting template to only ask for a single base port number.\n [wichert]\n\n* Fix broken creation of Plone 3.1(.x) sites.\n [wichert]\n\n\nVersion 1.9\n-----------\n\n* Install Plone 3.1 as default option.\n [wichert]\n\n* Fixed a missing 'import os' in the plone2_theme template. [davisagli]\n\n* Fix an ambiguous question in the silva_buildout template, and update\n the generated README file. [thefunny]\n\n\nVersion 1.8\n-----------\n\n* fixed the recipe template buildout.cfg generation, thanks Kai ;)\n [tarek]\n\nVersion 1.7\n-----------\n\n* Update the templates to have README.txt and HISTORY.txt in valid\n restructured format and use those as the package's long description.\n This automatically gives packages a more readable page on PyPI\n (and PSC with Tarek's excellent changes).\n [wichert]\n\n* Adjust the trove classifiers on the packages to not claim incorrect\n frameworks: we should only claim frameworks on which the package\n can run directly. So, for example, do not claim Zope2 of we also need\n Plone on top of Zope2.\n [wichert]\n\n\nVersion 1.6\n-----------\n\n* Add templates for a Silva buildout.\n [thefunny]\n\n* Add a metadata.xml to all generated GenericSetup profiles. This is\n required by new versions of GenericSetup.\n [wichert]\n\n* For nested namespace packages we need to declare both namespace\n levels as namespace packages. This is a requirement for current\n versions of setuptools.\n [wichert]\n\n* Use Plone 3.0.6 as default version for new Plone hosting buildouts\n [wichert]\n\n\nVersion 1.5.1\n-------------\n\n* Fix #2 (missing import in 'hosting.py') at\n http://plone.org/products/zopeskel/issues/2\n [nouri]\n\nVersion 1.5\n-----------\n\n* added a new local command into archetype template to inject\n new content types [spanky]\n\n* added a doctest for each template, and refactored the package\n so we have one python module per template [tarek]\n\n* Refactored the zc.buildout recipe to provide structured documention\n that will render nicely on PyPI, added comments for recipe authors\n to help writing documentation and tests and added a working doctest\n skeleton. Implemented automatic license classifiers for common\n licenses in the generated setup.py. The mapping is in zopeskel.base\n and can be used for other templates also.\n [dokai]\n\n* The 'five:registerPackage' ZCML directive is added in a project based on the\n 'plone' template only if the top level namespace package is not\n called 'Products'. This avoids having the product loaded twice in Zope.\n [davconvent]\n\n* Added paragraph about old style Zope 2 Product installation in the\n INSTALL.txt_tmpl file of the plone template.\n The paragraph will be added to the installation instructions if the top\n level namespace package is called 'Products'.\n [davconvent]\n\nVersion 1.4\n-----------\n\n* Set the version number for plone.recipe.plone in a new versions part in\n buildout.cfg. That works around a buildout bug: buildout breaks if you change\n the revision pin for a recipe.\n [wichert]\n\n* Fixed bug: when running 'paster create' with --no-interactive option,\n the package variable given in the command line is ignored.\n [Mustapha]\n\nVersion 1.3.4\n-------------\n\n* Added MANIFEST.in to prevent bad releases from svn exports.\n [fschulze]\n\nVersion 1.3.3\n-------------\n\n* Move to the newly released Varnish 1.1.2.\n [wichert]\n\n* Remove bad import which broke localcommand support.\n [deo]\n\n* Remove unneeded imports and whitespace cleanup.\n [deo]\n\nVersion 1.3.2\n-------------\n\n* Small fix in plone3_theme that did not install correctly with easy_install\n because of some files missing the the egg informations (added MANIFEST.in).\n [davconvent]\n\nVersion 1.3.1\n-------------\n\n* Added 'addcontent' local command to make possible injecting content types\n in ZopeSkel projects and make the Archetype template 'addcontent' aware.\n [mustapha]\n\n* Updated to Plone 3.0.4.\n [fschulze]\n\n* Rerelease because of a bad egg.\n [fschulze]\n\nVersion 1.3\n-----------\n\n* added the `recipe` template\n [tarek]\n\n* Add Plone 2.5.5.\n [wichert]\n\nVersion 1.2\n-----------\n\n* Merge a slightly stripped down version of the Jarn Plone hosting template.\n This provides a convenient way to create a buildout for all Plone 2.5 and\n 3.0 versions with ZEO and optional Varnish based caching.\n [wichert]",
"description_content_type": null,
"docs_url": null,
"download_url": "UNKNOWN",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "http://svn.plone.org/svn/collective/ZopeSkel/trunk",
"keywords": "web zope command-line skeleton project",
"license": "MIT",
"maintainer": null,
"maintainer_email": null,
"name": "ZopeSkel",
"package_url": "https://pypi.org/project/ZopeSkel/",
"platform": "UNKNOWN",
"project_url": "https://pypi.org/project/ZopeSkel/",
"project_urls": {
"Download": "UNKNOWN",
"Homepage": "http://svn.plone.org/svn/collective/ZopeSkel/trunk"
},
"release_url": "https://pypi.org/project/ZopeSkel/2.21.2/",
"requires_dist": null,
"requires_python": null,
"summary": "Templates and code generator for quickstarting Plone / Zope projects.",
"version": "2.21.2"
},
"last_serial": 662972,
"releases": {
"0.1": [
{
"comment_text": "",
"digests": {
"md5": "ba69bc1878c674d19f2a710c376c10dc",
"sha256": "d1e7b0a3d5ad89e6ad64548d0f975db49e8ede682df5654bd46851738ea17c65"
},
"downloads": -1,
"filename": "ZopeSkel-0.1.zip",
"has_sig": true,
"md5_digest": "ba69bc1878c674d19f2a710c376c10dc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 19418,
"upload_time": "2009-10-31T17:39:56",
"url": "https://files.pythonhosted.org/packages/55/83/eab22d1a6e062c2181ca5405b03d41e47251047796f28a56d3b42e4dcd7a/ZopeSkel-0.1.zip"
}
],
"0.11": [
{
"comment_text": "",
"digests": {
"md5": "100a5f92b8daeaffc6c0f83bf971ca17",
"sha256": "82264dd455ef90133c50411dfd241c30400f012c4208050df1c2a6e07037142f"
},
"downloads": -1,
"filename": "ZopeSkel-0.11.zip",
"has_sig": true,
"md5_digest": "100a5f92b8daeaffc6c0f83bf971ca17",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 84710,
"upload_time": "2009-10-31T17:41:00",
"url": "https://files.pythonhosted.org/packages/7d/8d/0755b23d50c2873866456d6aa4743e305b6f5afc31e6d74e032cdb85b443/ZopeSkel-0.11.zip"
}
],
"0.2": [
{
"comment_text": "",
"digests": {
"md5": "944b5604ebce8170fbb939df20d31cf1",
"sha256": "df8711a94a32fe89dbb88351ed7fee4536065e227b01ced92e4cddd3ed2e4bf7"
},
"downloads": -1,
"filename": "ZopeSkel-0.2.zip",
"has_sig": true,
"md5_digest": "944b5604ebce8170fbb939df20d31cf1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 38284,
"upload_time": "2009-10-31T17:41:17",
"url": "https://files.pythonhosted.org/packages/a7/e2/e390bee46907d1d2e429d94f6086c9c1a59b5c858d1f1f6485600094aa30/ZopeSkel-0.2.zip"
}
],
"0.3": [
{
"comment_text": "",
"digests": {
"md5": "461932a22317ccc74746f24f4508d177",
"sha256": "88c338601c595f35b751993edfa57b346a6ddd660973ae951739a9ced0bb3675"
},
"downloads": -1,
"filename": "ZopeSkel-0.3.zip",
"has_sig": true,
"md5_digest": "461932a22317ccc74746f24f4508d177",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 39481,
"upload_time": "2009-10-31T17:43:46",
"url": "https://files.pythonhosted.org/packages/75/ed/592d6ed61292e3289dd3ca2eb0c7f9eb098e46d26a4fdbc6d6a678412757/ZopeSkel-0.3.zip"
}
],
"0.4": [
{
"comment_text": "",
"digests": {
"md5": "5aadb9d9396a3b1e791e6644b1cec114",
"sha256": "e8314d846b5a968fb2a28d7b93fe8cbed2606533c41cf0a13064e81481f9567c"
},
"downloads": -1,
"filename": "ZopeSkel-0.4.zip",
"has_sig": true,
"md5_digest": "5aadb9d9396a3b1e791e6644b1cec114",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 74766,
"upload_time": "2009-10-31T17:44:13",
"url": "https://files.pythonhosted.org/packages/39/79/152a6009cc7725cf7a6eca83f3ff3a43840a1ce843006a8e74c01f961d77/ZopeSkel-0.4.zip"
}
],
"0.5": [
{
"comment_text": "",
"digests": {
"md5": "068475ced2137c0f4ab3083bc4c4fc80",
"sha256": "eacfef5e3f4bd82b37e096fd0e35468cc3f0323b5de3a6271d226a545f596f08"
},
"downloads": -1,
"filename": "ZopeSkel-0.5.zip",
"has_sig": true,
"md5_digest": "068475ced2137c0f4ab3083bc4c4fc80",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 74934,
"upload_time": "2009-10-31T17:44:25",
"url": "https://files.pythonhosted.org/packages/37/dd/06ed64184a714739ec41e7ae55c2fe522093742ac31839331472fb0527b6/ZopeSkel-0.5.zip"
}
],
"0.6": [
{
"comment_text": "",
"digests": {
"md5": "ad51a664c6646155cbd077625117ba1b",
"sha256": "47e18c8557cae2c8c638e685107258754b3cb6af60f73c618811c1cbff9cf2c7"
},
"downloads": -1,
"filename": "ZopeSkel-0.6.zip",
"has_sig": true,
"md5_digest": "ad51a664c6646155cbd077625117ba1b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 78167,
"upload_time": "2009-10-31T17:44:35",
"url": "https://files.pythonhosted.org/packages/cc/19/3332e2af7241a2b850beadfd40222f8389736c9aa70a18e3c71c985e7e10/ZopeSkel-0.6.zip"
}
],
"0.7": [
{
"comment_text": "",
"digests": {
"md5": "d513f882d4a25be67b437507877c3e77",
"sha256": "e72a86ae6d9695f062e89530a663986bbc24d90a4340cefcfaeb56028473245c"
},
"downloads": -1,
"filename": "ZopeSkel-0.7.zip",
"has_sig": true,
"md5_digest": "d513f882d4a25be67b437507877c3e77",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 78195,
"upload_time": "2009-10-31T17:44:48",
"url": "https://files.pythonhosted.org/packages/f2/f4/e1f6c32563ca546daca5429b26905befef36c0866b2051c12f01de7a5678/ZopeSkel-0.7.zip"
}
],
"0.8": [
{
"comment_text": "",
"digests": {
"md5": "1aacf4b6cf231ffa81deff20f52dd7a7",
"sha256": "323fbccec1e6e19059d763e81604f360d089d82530ac57532a84ba42625db658"
},
"downloads": -1,
"filename": "ZopeSkel-0.8.zip",
"has_sig": true,
"md5_digest": "1aacf4b6cf231ffa81deff20f52dd7a7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 78801,
"upload_time": "2009-10-31T17:45:13",
"url": "https://files.pythonhosted.org/packages/f9/cd/275547a79cbd598303a20966e976f1cfbc63ab200f7d20d3ac5009d3a50d/ZopeSkel-0.8.zip"
}
],
"0.9": [
{
"comment_text": "",
"digests": {
"md5": "ba4f476cfad07785958f7546345cbd92",
"sha256": "0e871c5e7318db7351903a28add3a2634087049f641176717bcb1278752e68a2"
},
"downloads": -1,
"filename": "ZopeSkel-0.9.zip",
"has_sig": true,
"md5_digest": "ba4f476cfad07785958f7546345cbd92",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 86030,
"upload_time": "2009-10-31T17:45:24",
"url": "https://files.pythonhosted.org/packages/b4/bf/19f35bfa164d83d09cd354ef476a4cff13c401a8a069918268482d0dffd2/ZopeSkel-0.9.zip"
}
],
"1.0": [
{
"comment_text": "",
"digests": {
"md5": "2794c3f2cba97b0fc0115a7e59b0625c",
"sha256": "2b6f620fa402fc80f115829e211c1c64339ceb72f8332623dc11414c2da4bba5"
},
"downloads": -1,
"filename": "ZopeSkel-1.0.zip",
"has_sig": true,
"md5_digest": "2794c3f2cba97b0fc0115a7e59b0625c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 91580,
"upload_time": "2009-10-31T17:45:33",
"url": "https://files.pythonhosted.org/packages/e3/8b/66b69589b5afd2ce58edb9bb5a7074c7e8d0cd4c68408120c3310b3b92b7/ZopeSkel-1.0.zip"
}
],
"1.0.1": [
{
"comment_text": "",
"digests": {
"md5": "2d3f57285dc58ab03dcc6a70415f262c",
"sha256": "1e14b8bf763c3badd3185f40533c8a36d4cce76705d9c956e5f7d07c5a64722b"
},
"downloads": -1,
"filename": "ZopeSkel-1.0.1.zip",
"has_sig": true,
"md5_digest": "2d3f57285dc58ab03dcc6a70415f262c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 99313,
"upload_time": "2009-10-31T17:45:47",
"url": "https://files.pythonhosted.org/packages/46/c9/c58d615f570f096408ca5c2887a3467d9f4d853218407f7c09eaeedfa33a/ZopeSkel-1.0.1.zip"
}
],
"1.1": [
{
"comment_text": "",
"digests": {
"md5": "dcff834ac757a13428e66d1b6c39ae6c",
"sha256": "58fd553bf388216a6cae232a2bd7f7f37b6ce8cb2a7afd8206794522fec64229"
},
"downloads": -1,
"filename": "ZopeSkel-1.1.zip",
"has_sig": true,
"md5_digest": "dcff834ac757a13428e66d1b6c39ae6c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 115961,
"upload_time": "2009-10-31T17:45:58",
"url": "https://files.pythonhosted.org/packages/61/c9/cc181213991b2078576f7604a38f5342de8e747e7355801a63345ced629a/ZopeSkel-1.1.zip"
}
],
"1.1.1": [
{
"comment_text": "",
"digests": {
"md5": "41d8dd8162367978f212c366ff25b67f",
"sha256": "c7fa515cfb3b7b7a0a2ae03308fa001c037e46832dbbd908bb0c3cdd4389ae45"
},
"downloads": -1,
"filename": "ZopeSkel-1.1.1.zip",
"has_sig": true,
"md5_digest": "41d8dd8162367978f212c366ff25b67f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 116550,
"upload_time": "2009-10-31T17:46:07",
"url": "https://files.pythonhosted.org/packages/27/c3/4831b0c2b9a01f7b02631ab57093c89bfb9509cb7b83ae1920e3267c8c3a/ZopeSkel-1.1.1.zip"
}
],
"1.1.2": [
{
"comment_text": "",
"digests": {
"md5": "f79414d8114ee4f2a28dd6002bdfc63d",
"sha256": "31e0bb992f743f212bce56c57de82fbf383fbc9aca3a057cd76f04c8726f6508"
},
"downloads": -1,
"filename": "ZopeSkel-1.1.2.zip",
"has_sig": true,
"md5_digest": "f79414d8114ee4f2a28dd6002bdfc63d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 116554,
"upload_time": "2009-10-31T17:46:21",
"url": "https://files.pythonhosted.org/packages/f4/2c/e7911537e82c3a30318feaade23abe9b6266d57406534038a857d2330da5/ZopeSkel-1.1.2.zip"
}
],
"1.2": [
{
"comment_text": "",
"digests": {
"md5": "3a85584ce902d15cbfdcd51fed62bf12",
"sha256": "95f0ed280362a5e5f8b6ba71a14bd6358897eea73cbb7ac6bf4ae3d3626ba903"
},
"downloads": -1,
"filename": "ZopeSkel-1.2.zip",
"has_sig": true,
"md5_digest": "3a85584ce902d15cbfdcd51fed62bf12",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 125101,
"upload_time": "2009-10-31T17:46:30",
"url": "https://files.pythonhosted.org/packages/8b/28/f76d33f1fb1e69d748dd34c1f2bc6a4502e18971561647079bb9f8eb1153/ZopeSkel-1.2.zip"
}
],
"1.3": [
{
"comment_text": "",
"digests": {
"md5": "093d834db71223fd655bbc9a5b2ce35b",
"sha256": "0088bc3e01519f91057cea0308b743c40fc8598405a7a809b22962c79c60db4b"
},
"downloads": -1,
"filename": "ZopeSkel-1.3.zip",
"has_sig": true,
"md5_digest": "093d834db71223fd655bbc9a5b2ce35b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 131710,
"upload_time": "2009-10-31T17:46:40",
"url": "https://files.pythonhosted.org/packages/66/a6/584389934070e51b75762f6bcc01a0944bf9d47c5cb92491bc0e28788d1f/ZopeSkel-1.3.zip"
}
],
"1.3.1": [
{
"comment_text": "",
"digests": {
"md5": "c2cf2b41ce05b42cbc06c9670eaeec44",
"sha256": "6c7ffb57f6bbc365614fcf09676d28762bcf2f24932dd639027254ac69b1ce59"
},
"downloads": -1,
"filename": "ZopeSkel-1.3.1.zip",
"has_sig": true,
"md5_digest": "c2cf2b41ce05b42cbc06c9670eaeec44",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 132566,
"upload_time": "2009-10-31T17:46:53",
"url": "https://files.pythonhosted.org/packages/81/d3/c45f4d9ca09eca9b36cd41d2f9faced3c0b4357a2a55881ce1bfca6ca98d/ZopeSkel-1.3.1.zip"
}
],
"1.3.2": [
{
"comment_text": "",
"digests": {
"md5": "f0589b2f81f4e1b9c3805b6e1c5b531b",
"sha256": "3d7c6865d2dd594a3b37e90f7954541c5aeca8989da9c4a24934cabc5b458a7c"
},
"downloads": -1,
"filename": "ZopeSkel-1.3.2.zip",
"has_sig": true,
"md5_digest": "f0589b2f81f4e1b9c3805b6e1c5b531b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 155416,
"upload_time": "2009-10-31T17:47:03",
"url": "https://files.pythonhosted.org/packages/c0/74/5bab5ae90c9d21e68ebace359c16d88c28071f8ce734098ebaeac81dd717/ZopeSkel-1.3.2.zip"
}
],
"1.3.3": [
{
"comment_text": "",
"digests": {
"md5": "53f8cf5fa2e769ae9f545f42e2938f1f",
"sha256": "d83825a75bf89a90f516d207a7899aaff5c36db90f2d0d7afe0bac3c221ce5e9"
},
"downloads": -1,
"filename": "ZopeSkel-1.3.3.zip",
"has_sig": true,
"md5_digest": "53f8cf5fa2e769ae9f545f42e2938f1f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 155487,
"upload_time": "2009-10-31T17:47:14",
"url": "https://files.pythonhosted.org/packages/e7/16/947b134b9b8d875a07e13a51a804295526141f20191ed6327f8ac99deed0/ZopeSkel-1.3.3.zip"
}
],
"1.3.4": [
{
"comment_text": "",
"digests": {
"md5": "b4cc588461657c5b821e767fa5e93b04",
"sha256": "e4a0abf3b5653fea0c6898d701afa003a52943d455f4a4b2af17b04bb97f68e5"
},
"downloads": -1,
"filename": "ZopeSkel-1.3.4.zip",
"has_sig": true,
"md5_digest": "b4cc588461657c5b821e767fa5e93b04",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 155846,
"upload_time": "2009-10-31T17:47:29",
"url": "https://files.pythonhosted.org/packages/d8/ab/3c0d0b745859aeecb468216c6536a2e66a49c39afcf6e3420cd908129c1b/ZopeSkel-1.3.4.zip"
}
],
"1.4": [
{
"comment_text": "",
"digests": {
"md5": "6b402aae4994d1b882c2a08889586e60",
"sha256": "5ba100051c222050d22b95c8c90ac53e47f9582a453efa4d7766a3fad5bc05e6"
},
"downloads": -1,
"filename": "ZopeSkel-1.4.zip",
"has_sig": true,
"md5_digest": "6b402aae4994d1b882c2a08889586e60",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 155603,
"upload_time": "2009-10-31T17:47:39",
"url": "https://files.pythonhosted.org/packages/1e/22/2fc70f462ebd40b613fb19a22e01af103ec8320e65d4f04d7d2a4e834d14/ZopeSkel-1.4.zip"
}
],
"1.5": [
{
"comment_text": "",
"digests": {
"md5": "8df89740347e92a17442037a37b2d9b0",
"sha256": "f122effe0da5348d1a12ab12595789783677647e7b3900c14101850049e8257a"
},
"downloads": -1,
"filename": "ZopeSkel-1.5.zip",
"has_sig": true,
"md5_digest": "8df89740347e92a17442037a37b2d9b0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 174862,
"upload_time": "2009-10-31T17:47:54",
"url": "https://files.pythonhosted.org/packages/bf/5f/a9d6ca254c177e7c3c0e66ccfc1ead8798511e52384b6252de6c23e479d7/ZopeSkel-1.5.zip"
}
],
"1.6": [
{
"comment_text": "",
"digests": {
"md5": "5726e202085f30a85a125b4eb491efca",
"sha256": "ba56f94b72ab80e7d357be2b9b2a047b6a62bd45e9541cc0323e3714a56f363c"
},
"downloads": -1,
"filename": "ZopeSkel-1.6.zip",
"has_sig": true,
"md5_digest": "5726e202085f30a85a125b4eb491efca",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 180556,
"upload_time": "2009-10-31T17:39:40",
"url": "https://files.pythonhosted.org/packages/07/02/c54b25e619ea30129df87cfcff6c6b128ddc598bde783015d7b55ebd4ec8/ZopeSkel-1.6.zip"
}
],
"1.7": [
{
"comment_text": "",
"digests": {
"md5": "30b712edb90e18e3946d80d9db2a2d08",
"sha256": "1b6168bff2d88c7b38167bdeb12bdf0fc927e71f5388aa58c381d1de83cbf4ff"
},
"downloads": -1,
"filename": "ZopeSkel-1.7.zip",
"has_sig": true,
"md5_digest": "30b712edb90e18e3946d80d9db2a2d08",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 182153,
"upload_time": "2009-10-31T17:48:18",
"url": "https://files.pythonhosted.org/packages/20/aa/dd2bd5625f9f028015520653e38ab416392d582a65db7d5dbd9080e8b3ff/ZopeSkel-1.7.zip"
}
],
"1.8": [
{
"comment_text": "",
"digests": {
"md5": "d3da3f778e6ed586b3cb69d894dd760b",
"sha256": "b048d29e353cc0d05768f427c0fe14d99606dbdbe8dee63743f2d06896ec7bee"
},
"downloads": -1,
"filename": "ZopeSkel-1.8.zip",
"has_sig": true,
"md5_digest": "d3da3f778e6ed586b3cb69d894dd760b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 182643,
"upload_time": "2009-10-31T17:48:29",
"url": "https://files.pythonhosted.org/packages/ae/95/30e9ec5fbea9615797f88deedd396c5d816561c42ebe8faf7555aa95e100/ZopeSkel-1.8.zip"
}
],
"1.9": [
{
"comment_text": "",
"digests": {
"md5": "80512761bb8da8a1f0b039902c3f726b",
"sha256": "50d045c4ae3a995f7ae4fbc52f6934a2a1c12c1befc011d5a8c3b2e66427f3d5"
},
"downloads": -1,
"filename": "ZopeSkel-1.9.zip",
"has_sig": true,
"md5_digest": "80512761bb8da8a1f0b039902c3f726b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 187393,
"upload_time": "2009-10-31T17:48:47",
"url": "https://files.pythonhosted.org/packages/85/05/1fa75a9ab5b055e032add1a600df086632f9841a2bd472202fe11b22c507/ZopeSkel-1.9.zip"
}
],
"2.0": [
{
"comment_text": "",
"digests": {
"md5": "445cab6246b6739dad590aec44388814",
"sha256": "df533df9ae891289c8870df93e853f188d9a8f01a03deba21805a0f074181593"
},
"downloads": -1,
"filename": "ZopeSkel-2.0.zip",
"has_sig": true,
"md5_digest": "445cab6246b6739dad590aec44388814",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 243004,
"upload_time": "2009-10-31T17:49:01",
"url": "https://files.pythonhosted.org/packages/bb/c2/231dbeee4fa7821ce1227f2164d82502ca0dc7e1a2fca6f3efe0f4eb1668/ZopeSkel-2.0.zip"
}
],
"2.10": [
{
"comment_text": "",
"digests": {
"md5": "2a3567518cbf66b723cc10025c8beda9",
"sha256": "1ae4eb38bc266140690cc255f8e1e504c8d4055403ddb710472ac8266259864b"
},
"downloads": -1,
"filename": "ZopeSkel-2.10.zip",
"has_sig": true,
"md5_digest": "2a3567518cbf66b723cc10025c8beda9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 255134,
"upload_time": "2009-10-31T17:52:08",
"url": "https://files.pythonhosted.org/packages/a7/1f/9c8a39e5b922a9a8c6df864f15c1dc034e6560592faec39a46bb62445291/ZopeSkel-2.10.zip"
}
],
"2.11": [
{
"comment_text": "",
"digests": {
"md5": "f5f4511c506a93d1677d8403e147ee36",
"sha256": "be5b4f1dbd0a5b135f7da1d96956e78feae1cab140c4de86320b90245eb9643b"
},
"downloads": -1,
"filename": "ZopeSkel-2.11.zip",
"has_sig": true,
"md5_digest": "f5f4511c506a93d1677d8403e147ee36",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 279860,
"upload_time": "2009-10-31T17:52:27",
"url": "https://files.pythonhosted.org/packages/77/4a/af7b5b8496d618de69c9c169d5b5d419b471ed5edf20e0a2ac66773a6945/ZopeSkel-2.11.zip"
}
],
"2.11.1": [
{
"comment_text": "",
"digests": {
"md5": "c8f998114a3bef401f884f24aaeb0c48",
"sha256": "889ba5fde16247a6372ecd3700df9bb3f5a3a0541ee2251a38a1771b7941ed89"
},
"downloads": -1,
"filename": "ZopeSkel-2.11.1.zip",
"has_sig": true,
"md5_digest": "c8f998114a3bef401f884f24aaeb0c48",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 281532,
"upload_time": "2009-10-31T17:52:37",
"url": "https://files.pythonhosted.org/packages/d5/03/f4e62f5d210803336b40f76fe9145451c6020c7ca938a2fed60ed8c3b81b/ZopeSkel-2.11.1.zip"
}
],
"2.12": [
{
"comment_text": "",
"digests": {
"md5": "17aa821c817562a3778ba9bdce8f7e8c",
"sha256": "4c7a78978a6a3fa55f494ff8359bc818918d02f1ca36ad7ca8214020b11f0905"
},
"downloads": -1,
"filename": "ZopeSkel-2.12.zip",
"has_sig": true,
"md5_digest": "17aa821c817562a3778ba9bdce8f7e8c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 289329,
"upload_time": "2009-10-31T17:52:51",
"url": "https://files.pythonhosted.org/packages/88/92/7481ed80158672fd3b8516985551f5e939c32eea3f7ead9314d74d004e09/ZopeSkel-2.12.zip"
}
],
"2.13": [
{
"comment_text": "",
"digests": {
"md5": "3876180bddf64349a2973100ea5eaa06",
"sha256": "214bd431e271d0dfa69be76b9fd3bbf21b47faf1e2adadd152350405d6f1802d"
},
"downloads": -1,
"filename": "ZopeSkel-2.13.zip",
"has_sig": true,
"md5_digest": "3876180bddf64349a2973100ea5eaa06",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 290498,
"upload_time": "2009-10-31T17:30:47",
"url": "https://files.pythonhosted.org/packages/ad/37/10197277667687580b97bfad9010fe1dd5085de1802148deb7a6a78f411d/ZopeSkel-2.13.zip"
}
],
"2.14": [
{
"comment_text": "",
"digests": {
"md5": "8b093824b1396d1e0ad8b81a297f970b",
"sha256": "bbf3dd798985f44b9f4ef94dc5b11713a7f1f0d007ee098acdff55159b409aa5"
},
"downloads": -1,
"filename": "ZopeSkel-2.14.zip",
"has_sig": true,
"md5_digest": "8b093824b1396d1e0ad8b81a297f970b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 291656,
"upload_time": "2009-11-19T18:55:39",
"url": "https://files.pythonhosted.org/packages/a9/01/9f7e1c0f788809b6d8b1e136fa89710913199baa495d7b4cd65657897320/ZopeSkel-2.14.zip"
}
],
"2.14.1": [
{
"comment_text": "",
"digests": {
"md5": "6e7f9c7555191298fc73a61a69fbc302",
"sha256": "43a79f22c686e547e0ce8cdd2b79356b7ffda7241ae6ea45afcf306fd44078f0"
},
"downloads": -1,
"filename": "ZopeSkel-2.14.1.zip",
"has_sig": true,
"md5_digest": "6e7f9c7555191298fc73a61a69fbc302",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 293529,
"upload_time": "2009-11-19T21:48:30",
"url": "https://files.pythonhosted.org/packages/1c/d3/a391f41c1d76392a6fb657a7552027b24f85e869f5018195022d763a8c16/ZopeSkel-2.14.1.zip"
}
],
"2.14.2": [
{
"comment_text": "",
"digests": {
"md5": "3df80fa1c4f55322cf7f705191ef7459",
"sha256": "2bc2c7394f109e0f5fe2d1bcd51e3ed5f056d65c8fca2992c14855d059be9244"
},
"downloads": -1,
"filename": "ZopeSkel-2.14.2.zip",
"has_sig": true,
"md5_digest": "3df80fa1c4f55322cf7f705191ef7459",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 293314,
"upload_time": "2009-12-08T14:42:24",
"url": "https://files.pythonhosted.org/packages/16/93/ea201208a6cf11c33ca11d3c4de033cadf519270a1d112b424db48280128/ZopeSkel-2.14.2.zip"
}
],
"2.15": [
{
"comment_text": "",
"digests": {
"md5": "7ea801c9415793328a4b9cb278c7d876",
"sha256": "e82b61526cf0d79bfd6757fd92eb441d7a6a7b7f79e8de16a4957dc5c735ad63"
},
"downloads": -1,
"filename": "ZopeSkel-2.15.zip",
"has_sig": false,
"md5_digest": "7ea801c9415793328a4b9cb278c7d876",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 317112,
"upload_time": "2010-01-23T02:30:55",
"url": "https://files.pythonhosted.org/packages/39/7b/765c69ef4b288ad4aa0490dce27b767ee397ae988015c6d22d725596fccd/ZopeSkel-2.15.zip"
}
],
"2.16": [
{
"comment_text": "",
"digests": {
"md5": "1d380ee4d69075a0582be517e2566473",
"sha256": "7d08564dce9600f15f35b40779ec38c21032d3a995b83ed496779f713428eb7a"
},
"downloads": -1,
"filename": "ZopeSkel-2.16.zip",
"has_sig": false,
"md5_digest": "1d380ee4d69075a0582be517e2566473",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 327521,
"upload_time": "2010-03-22T22:32:57",
"url": "https://files.pythonhosted.org/packages/83/fb/543cd8a3d7187ac6840bb0c4338e066fb40892a26c2ed99fb0f6269f858f/ZopeSkel-2.16.zip"
}
],
"2.17": [
{
"comment_text": "",
"digests": {
"md5": "f12d1f9b3bc86a5731f8fd2c6acc3027",
"sha256": "8f7cc0484492d60b2708ced94c2b52c32f3ab989ac86a2fc575a16afa4f3e7f3"
},
"downloads": -1,
"filename": "ZopeSkel-2.17.zip",
"has_sig": false,
"md5_digest": "f12d1f9b3bc86a5731f8fd2c6acc3027",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 332352,
"upload_time": "2010-06-14T23:00:10",
"url": "https://files.pythonhosted.org/packages/6f/e5/f55f697b8233899e128bdf531cf86b3a3779748b2aea025f09142dc63f94/ZopeSkel-2.17.zip"
}
],
"2.18": [
{
"comment_text": "",
"digests": {
"md5": "2dfd3aac095148d0e7c491a1ed5b1cb8",
"sha256": "0b837578ef09f1ccf5571fa78a45678711e1f3d1aa9cd65284d4c9b5c1a1cac7"
},
"downloads": -1,
"filename": "ZopeSkel-2.18.zip",
"has_sig": false,
"md5_digest": "2dfd3aac095148d0e7c491a1ed5b1cb8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 334534,
"upload_time": "2010-09-30T20:42:53",
"url": "https://files.pythonhosted.org/packages/f2/d5/6571c6936f5a93c2afe05bf2be84fda9474aa073bb13fa19bef8693c66a5/ZopeSkel-2.18.zip"
}
],
"2.19": [
{
"comment_text": "",
"digests": {
"md5": "07bd626793c8b1f991e2d992884a9945",
"sha256": "8ab38493d9734e3421740541fb5529b58648b571b93544a66e12cd000bae3533"
},
"downloads": -1,
"filename": "ZopeSkel-2.19.tar.gz",
"has_sig": false,
"md5_digest": "07bd626793c8b1f991e2d992884a9945",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 199627,
"upload_time": "2011-01-22T01:38:02",
"url": "https://files.pythonhosted.org/packages/bb/1d/08179acb3e132131cf10022c3a68260f622b3684e9138b50cbc1db59a975/ZopeSkel-2.19.tar.gz"
}
],
"2.2": [
{
"comment_text": "",
"digests": {
"md5": "3413748a43f70da93a0e044d94fd9813",
"sha256": "f4d77a04c42ac53d5cf0e8ea8adaad83967784a698f5d517c43e914ed142ff77"
},
"downloads": -1,
"filename": "ZopeSkel-2.2.zip",
"has_sig": true,
"md5_digest": "3413748a43f70da93a0e044d94fd9813",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 243540,
"upload_time": "2009-10-31T17:49:20",
"url": "https://files.pythonhosted.org/packages/3f/fd/dc3f3bf194fa969ff0fd564b697efbc3cd93d55b7621eee7acdf2dea2a49/ZopeSkel-2.2.zip"
}
],
"2.20": [
{
"comment_text": "",
"digests": {
"md5": "eeca8cb71d313cbbe6b7edc27fa09638",
"sha256": "cf1a62d2e2cf98830624ae1ddeede08e19de6052c553550225799053ed82ea25"
},
"downloads": -1,
"filename": "ZopeSkel-2.20.zip",
"has_sig": false,
"md5_digest": "eeca8cb71d313cbbe6b7edc27fa09638",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 356213,
"upload_time": "2011-08-09T23:06:09",
"url": "https://files.pythonhosted.org/packages/4b/39/ae21dca60583e24fd68b9014d8f9565a16056f033ca68917d1883d0a966b/ZopeSkel-2.20.zip"
}
],
"2.21": [
{
"comment_text": "",
"digests": {
"md5": "2da9d871b3fbb29bc2758a6346bec9e1",
"sha256": "99afd2eb0e592a368a7daa6deac48e83b6fa47c51cc20f17bd3e157c663d6ac7"
},
"downloads": -1,
"filename": "ZopeSkel-2.21.zip",
"has_sig": false,
"md5_digest": "2da9d871b3fbb29bc2758a6346bec9e1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 351677,
"upload_time": "2011-10-07T02:34:13",
"url": "https://files.pythonhosted.org/packages/7c/1c/a868f1c6c0afb25df7deb442b6408348a2cd2d9c7ba68edbb256000078c7/ZopeSkel-2.21.zip"
}
],
"2.21.1": [
{
"comment_text": "",
"digests": {
"md5": "ea014be2c8bce36b035a26ac47ff8d2e",
"sha256": "78ddc99615cf7d4c47449bf5f3b387ee8b0acd2f67fa17ec8244a4a6f7037393"
},
"downloads": -1,
"filename": "ZopeSkel-2.21.1.zip",
"has_sig": false,
"md5_digest": "ea014be2c8bce36b035a26ac47ff8d2e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 353361,
"upload_time": "2011-10-07T02:42:03",
"url": "https://files.pythonhosted.org/packages/87/30/debb48412aa384fb37e28dfecb18fb100693c2cbfec2d36dda5b209b8375/ZopeSkel-2.21.1.zip"
}
],
"2.21.2": [
{
"comment_text": "",
"digests": {
"md5": "64ded2a4e45e373caf9d27fcd7661d41",
"sha256": "829f73ddf29821c5c2881aa640946c9b417b34785540edbb99f5c4ea90f2be13"
},
"downloads": -1,
"filename": "ZopeSkel-2.21.2.zip",
"has_sig": false,
"md5_digest": "64ded2a4e45e373caf9d27fcd7661d41",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 353458,
"upload_time": "2011-10-07T02:50:25",
"url": "https://files.pythonhosted.org/packages/c1/de/1976cbdfba34fc555cb2f5699dc2b2d40a3ca1641fbf191f0fc10ada7e00/ZopeSkel-2.21.2.zip"
}
],
"2.3": [
{
"comment_text": "",
"digests": {
"md5": "2f63893e15f3b6aab9dcb452c83a4c6a",
"sha256": "e1984332c08419c632f763ac224357f3ca86d0d79aaa1307225dbe7d6e7e061c"
},
"downloads": -1,
"filename": "ZopeSkel-2.3.zip",
"has_sig": true,
"md5_digest": "2f63893e15f3b6aab9dcb452c83a4c6a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 244731,
"upload_time": "2009-10-31T17:49:35",
"url": "https://files.pythonhosted.org/packages/31/c1/f1805d9e6753d7dd19662741dbb95cc77194ba9d4a92ff20e2f98d7905aa/ZopeSkel-2.3.zip"
}
],
"2.4": [
{
"comment_text": "",
"digests": {
"md5": "8574ad7388cf59ae563ae46f952c6e29",
"sha256": "f42cca89ee4b0f5ceedec7b70500ea18b811ee753f4f8565398c58c5714f68b1"
},
"downloads": -1,
"filename": "ZopeSkel-2.4.zip",
"has_sig": true,
"md5_digest": "8574ad7388cf59ae563ae46f952c6e29",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 253897,
"upload_time": "2009-10-31T17:50:09",
"url": "https://files.pythonhosted.org/packages/59/35/e1c600f72f9070835c6f5e58e652cbb0c54c6bd872e36e1ea44d57003ea5/ZopeSkel-2.4.zip"
}
],
"2.5": [
{
"comment_text": "",
"digests": {
"md5": "cbe249ef39a6b54c822775a8b9b1378c",
"sha256": "d39a5ad0c1d2955266d598a52c2028e08486dd022a251e8a9438d145d76a123c"
},
"downloads": -1,
"filename": "ZopeSkel-2.5.zip",
"has_sig": true,
"md5_digest": "cbe249ef39a6b54c822775a8b9b1378c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 252635,
"upload_time": "2009-10-31T17:50:00",
"url": "https://files.pythonhosted.org/packages/82/c6/e8e1d3b2bba44b28ad6639f98f021b37ce51943b1513a092c867577440ad/ZopeSkel-2.5.zip"
}
],
"2.6": [
{
"comment_text": "",
"digests": {
"md5": "9131b7372fd3e3799e55b703b2565b5a",
"sha256": "26d9ae4c989e589d10e90acf0b02c1de95d9b0981dc898b4fee4e1e94810754e"
},
"downloads": -1,
"filename": "ZopeSkel-2.6.zip",
"has_sig": true,
"md5_digest": "9131b7372fd3e3799e55b703b2565b5a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 252781,
"upload_time": "2009-10-31T17:50:25",
"url": "https://files.pythonhosted.org/packages/27/5f/6c7a4d6fb20ac111c2de7361e9088cbd0a84630b5573f1d3b7c9def91a5e/ZopeSkel-2.6.zip"
}
],
"2.6.1": [
{
"comment_text": "",
"digests": {
"md5": "172846cebdbf4b5c37cd52364c74f6fd",
"sha256": "07d5cd0bb473209a9f1530fd86d13cf9aa7cc3cf53928754a077f20e571b67b8"
},
"downloads": -1,
"filename": "ZopeSkel-2.6.1.zip",
"has_sig": true,
"md5_digest": "172846cebdbf4b5c37cd52364c74f6fd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 254509,
"upload_time": "2009-10-31T17:50:46",
"url": "https://files.pythonhosted.org/packages/11/58/bac83c07a86c6e27e13fb75165e307f18ce76f951ee9ffa3d8df8f606a89/ZopeSkel-2.6.1.zip"
}
],
"2.6.2": [
{
"comment_text": "",
"digests": {
"md5": "fe5f34902ecfca7df5679bcdb6b0d4e1",
"sha256": "8a2c6cb7a59472817c1732e93092bd4a2492cb4da1b1a3327dcaa39b69943652"
},
"downloads": -1,
"filename": "ZopeSkel-2.6.2.zip",
"has_sig": true,
"md5_digest": "fe5f34902ecfca7df5679bcdb6b0d4e1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 254624,
"upload_time": "2009-10-31T17:50:58",
"url": "https://files.pythonhosted.org/packages/84/55/e7999b62c74d71aa137064e3cf6cbfe20954d9472d973606811e845fecec/ZopeSkel-2.6.2.zip"
}
],
"2.7": [
{
"comment_text": "",
"digests": {
"md5": "9c9cbf1fd9b11449d02b6478172790ef",
"sha256": "425b9a2a71e79a479a5a9faf0328e9f00337905820977bf27fdb70f3df46949c"
},
"downloads": -1,
"filename": "ZopeSkel-2.7.zip",
"has_sig": true,
"md5_digest": "9c9cbf1fd9b11449d02b6478172790ef",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 253286,
"upload_time": "2009-10-31T17:51:09",
"url": "https://files.pythonhosted.org/packages/6b/9c/8b22e9762f3c338ac788bb5253f86a409f062f0354fea0b8ddb0cc8cbfec/ZopeSkel-2.7.zip"
}
],
"2.8": [
{
"comment_text": "",
"digests": {
"md5": "24ccba483a3b198ce9aa599bf37b56c5",
"sha256": "c4eecdc171892205a67e0dadcbdbd8bdffe1ee2f6643d14a18f67e609e6e3698"
},
"downloads": -1,
"filename": "ZopeSkel-2.8.zip",
"has_sig": true,
"md5_digest": "24ccba483a3b198ce9aa599bf37b56c5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 253914,
"upload_time": "2009-10-31T17:51:36",
"url": "https://files.pythonhosted.org/packages/8a/0e/949675644d2feb6b17f2734d9c1b80fbec1a290424e732d64cee0fc8c165/ZopeSkel-2.8.zip"
}
],
"2.9": [
{
"comment_text": "",
"digests": {
"md5": "82aa11eab411a1cd454ad883790a604b",
"sha256": "d5f854eb46a5cb601290034f8d25477166470563b6fd54e292691ab933310da8"
},
"downloads": -1,
"filename": "ZopeSkel-2.9.zip",
"has_sig": true,
"md5_digest": "82aa11eab411a1cd454ad883790a604b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 254012,
"upload_time": "2009-10-31T17:51:50",
"url": "https://files.pythonhosted.org/packages/45/b7/786b1519a54687258dc5f499e0d2003db2d98ba6fd2cf47cb3679980484d/ZopeSkel-2.9.zip"
}
],
"3.0a1": [
{
"comment_text": "",
"digests": {
"md5": "ab88fc169fb916c5ccf36680f5ea7e64",
"sha256": "a61e33926a2aacd51782ff262b7c415b4224f2a5c1d68bf07a77c48e07fe7d8a"
},
"downloads": -1,
"filename": "ZopeSkel-3.0a1.zip",
"has_sig": false,
"md5_digest": "ab88fc169fb916c5ccf36680f5ea7e64",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 45252,
"upload_time": "2011-11-02T16:03:15",
"url": "https://files.pythonhosted.org/packages/b7/af/4ab6ce40068a837c06915414ee96aa0897e601a0f968b02d8fa1142a84bc/ZopeSkel-3.0a1.zip"
}
],
"3.0b1": [
{
"comment_text": "",
"digests": {
"md5": "2f44d564d3da89bad3ead3adf9a0a74f",
"sha256": "3f52769aa3ceb376c41949047d302fe82ccae497f6ba679be1b59d8da57b0846"
},
"downloads": -1,
"filename": "ZopeSkel-3.0b1.zip",
"has_sig": false,
"md5_digest": "2f44d564d3da89bad3ead3adf9a0a74f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30154,
"upload_time": "2012-05-22T16:20:47",
"url": "https://files.pythonhosted.org/packages/c1/35/19c338bad3213f21132e91d6984bdeecf5ce884dc6f22de96cc53e0921c4/ZopeSkel-3.0b1.zip"
}
],
"3.0b2": [
{
"comment_text": "",
"digests": {
"md5": "cb5a98d53610defd40ac526a473a5fbf",
"sha256": "42bcbe8c81129c943bce43f942e6d7b62cb9fced0e28d594715749b9abc6953c"
},
"downloads": -1,
"filename": "ZopeSkel-3.0b2.zip",
"has_sig": false,
"md5_digest": "cb5a98d53610defd40ac526a473a5fbf",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27919,
"upload_time": "2012-05-22T16:48:09",
"url": "https://files.pythonhosted.org/packages/55/12/54bf3fab4b8b37a906264111114cfebff5797a3e6b9045dcad2a89da6901/ZopeSkel-3.0b2.zip"
}
],
"3.0b3": [
{
"comment_text": "",
"digests": {
"md5": "b514fa2b024f575c404f96297007ecb0",
"sha256": "ce6facb6fac6bfcaa92350328cc3862f3b55aedb64a48e923300831a30a5fff0"
},
"downloads": -1,
"filename": "ZopeSkel-3.0b3.zip",
"has_sig": false,
"md5_digest": "b514fa2b024f575c404f96297007ecb0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 42081,
"upload_time": "2012-05-22T21:37:51",
"url": "https://files.pythonhosted.org/packages/1b/d3/380bb6f38bb75ac3372b96151378c6030c659599055e5fa8fbb2d346bc9f/ZopeSkel-3.0b3.zip"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "64ded2a4e45e373caf9d27fcd7661d41",
"sha256": "829f73ddf29821c5c2881aa640946c9b417b34785540edbb99f5c4ea90f2be13"
},
"downloads": -1,
"filename": "ZopeSkel-2.21.2.zip",
"has_sig": false,
"md5_digest": "64ded2a4e45e373caf9d27fcd7661d41",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 353458,
"upload_time": "2011-10-07T02:50:25",
"url": "https://files.pythonhosted.org/packages/c1/de/1976cbdfba34fc555cb2f5699dc2b2d40a3ca1641fbf191f0fc10ada7e00/ZopeSkel-2.21.2.zip"
}
]
}