{ "info": { "author": "Johannes Raggam", "author_email": "johannes@raggam.co.at", "bugtrack_url": null, "classifiers": [ "Framework :: Plone", "Framework :: Plone :: 5.1", "Framework :: Plone :: 5.2", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "Introduction\n============\n\nProvides the types \"Folderish Event\", \"Folderish News Item\" and\n\"Folderish Document\" as replacements for their ATContentTypes equivalents.\nThose types are able to hold any other content, like a Folder.\n\nThere is a \"portlet\" profile, which installs a portlet to show the contents of\nan folderish type.\n\nYou can limit the types, which can be added to FolderishTypes by providing\na Generic Setup import type configuration.\n\nThe reason for this package is, that in my experience it's easier to group\nrelated content together at one place. An article about something fancy might\nhave an image gallery associated with it as well as some pdf-downloads. With\nthis package you can put everyting inside the article.\nAnother use case is that you can structure content hierarchically and don't need\nto define \"default pages\" - a concept hard to understand and handle (see:\nhttp://www.sixfeetup.com/blog/plone-vs.-drupal-core-features-comparison )\n\nAlexander Limi also wished folderish content back in 2008:\n\"#10: Content re-use is overrated \u2014 people like folderish\"\nhttp://limi.net/articles/18-things-i-wish-were-true-about-plone/\n\nTo use ``collective.folderishtypes`` with Archetypes, depend on the\n``dexterity`` ``extras_require`` in setup.py or buildout like so::\n\n collective.folderishtypes [archetypes]\n\nFor the dexterity version, like so::\n\n collective.folderishtypes [dexterity]\n\n\nHow to migrate Products.PloneArticle documents to Folderish Document\n====================================================================\n\nA upgrade step \"PloneArticle to Folderish Document\"\tin the\ncollective.folderishtypes default profile for migrating PloneArticle objects to\nFolderish Document objects is provided. Note, this does not cover\nPloneArticleMultiPage at the moment.\n\n\nHow to migrate non-folderishtypes to folderish ones\n===================================================\n\nNon-folderish content types are missing some btree attributes, which folderish\ncontent types have (See ``Products.BtreeFolder2.BTreeFolder2Base._initBtrees``\n).\n\nplone.app.folder provides an upgrade view to migrate pre-plone.app.folder (or\nnon-folderish) types to the new Btree based implementation (defined in:\n``plone.app.folder.migration.BTreeMigrationView``).\n\nTo upgrade your non-folderish content types to folderish ones, just call\n``@@migrate-btrees`` on your Plone site root, and you're done.\n\n\nTODO\n====\n\n- Depend on z3c.jbot, so that overriding folder_listing and folder_summary_view\n might also work at IPloneSite root.\n- Write tests\n- See, if this portlet is useful:\n https://github.com/RedTurtle/collective.portlet.localcontents\n\n\nTested with\n===========\n\nPlone 4, Plone 5\n\nChanges\n=======\n\n2.2.0 (2019-03-20)\n------------------\n\n- Add support for Python 3 and Plone 5.2.\n [pbauer]\n\n\n2.1 (2017-10-03)\n----------------\n\n- Use 'getAllowedSizes' from CMFPlone if available to allow AT free use\n [tomgross]\n\n- Change portlets to support z3c.form and make it Plone 5 compatible (no more formlib).\n [thet]\n\n\n2.0.2 (2015-06-30)\n------------------\n\n- Configure folderish types to use the ``plone.content.itemView`` caching\n ruleset instead the folderView one.\n [thet]\n\n\n2.0.1 (2015-04-08)\n------------------\n\n- Fix redirection to parent context after editing for Archetypes. We cannot\n import something from Acquisition in a Filesystem script.\n [thet]\n\n\n2.0 (2015-03-04)\n----------------\n\n- Plone 5 + 4 safe call of the ``@@folder_listing`` ``listing_macro``.\n [thet]\n\n- Provide a ``redirectparent.zcml`` file. When loading it the user is\n redirected to the parent folder after adding or editing. This avoids\n confusing behavior of creating nested content structures, while one might add\n multiple content items to one folder. For consistency reasons, this is done\n for all types.\n For Archetypes, this behavior is enabled by default.\n [thet]\n\n- Add a browserlayer for collective.folderishtypes including the .at and .dx\n sub packages together with upgrade steps. Bind relevant browser views to\n these browser layers.\n [thet]\n\n- Allow \"Site Administrator\" to add ATContentTypes based Folderish Content\n Types.\n [thet]\n\n- Better PloneArticle migration: Set content_type and filename for files and\n images. Plus: migrate contentleadimage, if available.\n [thet]\n\n- Update unsintall profiles.\n [thet]\n\n\n2.0b2 (2014-10-17)\n------------------\n\n- Fix broken release\n [rnix]\n\n\n2.0b1 (2014-10-02)\n------------------\n\n- Add ISelectableConstrainTypes to behaviors of Dexterity folderish types.\n [agitator]\n\n- Add content listing viewlet.\n [agitator]\n\n- Add migration step for Products.PloneArticle objects to Archetypes based\n foldersh document objects.\n [thet]\n\n- Initialize permissions and roles for Archetypes foldersh types.\n [thet]\n\n- Dexterity support.\n [thet]\n\n\n1.8 (2013-11-23)\n----------------\n\n- In folder_summary_view do a more sane check, if an image is available.\n [thet]\n\n\n1.7 (2013-08-23)\n----------------\n\n- Remove bobo_traverse in Foldersh News Item, since plone.app.imaging does the\n traversing.\n [thet]\n\n- Remove vCalendar action entry from FTI config of Folderish Event.\n [thet]\n\n- More documentation: How To create own content types based on\n collective.folderishtypes, How to migrate non-folderishtypes to folderish\n ones.\n [thet]\n\n\n1.6 (2013-04-23)\n----------------\n\n- Update translations and translate folder_listing.\n [thet]\n\n- Add z3c.autoinclude.plugin entry point.\n [thet]\n\n\n1.5 (2012-11-30)\n----------------\n\n- Let the folderish types derive from Products.ATContentTypes ATFolder instead\n of plone.app.folder's implementation. It inherits some i18n classes. This\n fixes the issue that on translation of folderish types LinguaPlone's\n translation view wasn't shown.\n [thet]\n\n\n1.4 (2012-11-28)\n----------------\n\n- Give the original, non-folderish types another title, so that they can be\n easily kept apart from the folderish ones.\n [thet]\n\n- For folderish events, move the location field back to the main schemata.\n [thet]\n\n\n1.3 (2012-11-26)\n----------------\n\n- Allow discussions from plone.app.discussion on Folderish Types.\n [thet]\n\n\n1.2.1 (2012-09-06)\n------------------\n\n- CSS fix\n [rnix]\n\n\n1.2 (2012-09-04)\n----------------\n\n- Removed folderish=True when finalizing the schema, which prevented\n relateditems from being displayed. Updated import to plone.app.folder.\n [agitator]\n\n- Fix meta types in FTI to follow consistent conventions.\n [rnixx]\n\n- For Folderish Event, use plone.app.event's ATEvent implementation if\n available.\n [thet]\n\n\n1.1.1 (2012-02-05)\n------------------\n\n- Add a custom style class for the contextual contents portlet based on the\n portlet's name.\n [thet]\n\n\n1.1 (2012-02-04)\n----------------\n\n- Add a contextual contents portlet, which shows the contents of folderish\n types in a portlet.\n [thet]\n\n\n1.0 (2012-02-02)\n----------------\n\n- No Changes, release as 1.0 final.\n [thet]\n\n\n1.0b5 (2011-09-07)\n------------------\n\n- Updated documentation: Missing viewlet issue.\n [thet]\n\n\n1.0b4 (2011-09-07)\n------------------\n\n- Locales Update.\n [thet]\n\n- Add types to image_types in portal_atct to allow image scale recreation.\n [thet]\n\n- Add HistroyAwareMixin and configure types to be versionable.\n [thet]\n\n- Remove folderish_listing_viewlet, since there is already a portlet which can\n be used.\n [thet]\n\n- Include CSS via link instead of import, which can then be better processed by\n XML manipulation tools like Deliverance or Diazo.\n [thet]\n\n- More explicit content-icons background styles which don't override\n background-color.\n [thet]\n\n- Use plone.app.imaging scales - apply a schema patch to FolderishNewsItem.\n [thet]\n\n- Fixed traversing to image scales for FolderishNewsItem. Subclasses should\n implement __bobo_traverse__ too.\n [thet]\n\n\n1.0b3 (2011-03-22)\n------------------\n\n- Add rolemap.xml for generic setup to have proper configured permissions.\n [thet]\n\n\n1.0b2 (2011-03-10)\n------------------\n\n- Make portlet registration optional and register portlets only for folderish\n types.\n [thet]\n\n- Updated folder_listing.pt and folder_summary_view.pt to current Plone trunk.\n [thet]\n\n\n1.0b1 (2011-02-18)\n------------------\n\n- Initial release", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/collective/collective.folderishtypes", "keywords": "content types plone folderish", "license": "GPL", "maintainer": "", "maintainer_email": "", "name": "collective.folderishtypes", "package_url": "https://pypi.org/project/collective.folderishtypes/", "platform": "", "project_url": "https://pypi.org/project/collective.folderishtypes/", "project_urls": { "Homepage": "http://github.com/collective/collective.folderishtypes" }, "release_url": "https://pypi.org/project/collective.folderishtypes/2.2.0/", "requires_dist": null, "requires_python": "", "summary": "Folderish News Item, Document and Event as replacement for default types.", "version": "2.2.0" }, "last_serial": 4968011, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "14cc5451532cd8935ddbfe690962c6c7", "sha256": "9d617f5f480e0b26f13dd8ae628034f200b0ca6947a16789f50bcc9baa6cbcb4" }, "downloads": -1, "filename": "collective.folderishtypes-1.0.tar.gz", "has_sig": false, "md5_digest": "14cc5451532cd8935ddbfe690962c6c7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21605, "upload_time": "2012-02-02T11:24:04", "url": "https://files.pythonhosted.org/packages/bd/13/1d18524b4dd1bf6fe9407548484a94c574f373027163262352a3838608fd/collective.folderishtypes-1.0.tar.gz" } ], "1.0b1": [ { "comment_text": "", "digests": { "md5": "436beaf2b8419503612326ad6b221620", "sha256": "3764543f892772a1d75480b61b6a3c864ea7d6d2f2aa8ce97b8ab439e58229bc" }, "downloads": -1, "filename": "collective.folderishtypes-1.0b1.tar.gz", "has_sig": false, "md5_digest": "436beaf2b8419503612326ad6b221620", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19883, "upload_time": "2011-02-18T00:37:43", "url": "https://files.pythonhosted.org/packages/ce/f6/4b73298d143aa27b195aafaf227da65c00f8e45db1dc21a952c899f60835/collective.folderishtypes-1.0b1.tar.gz" } ], "1.0b2": [ { "comment_text": "", "digests": { "md5": "0d6c3405ad5cddb11242bc66b1c32e78", "sha256": "39efdd60a521d900d39461b9feb33b4efde95277b1a6fce56b1c54b425e7fccc" }, "downloads": -1, "filename": "collective.folderishtypes-1.0b2.tar.gz", "has_sig": false, "md5_digest": "0d6c3405ad5cddb11242bc66b1c32e78", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20426, "upload_time": "2011-03-10T14:32:36", "url": "https://files.pythonhosted.org/packages/5c/f1/6167ffa186415251916f690d968b3d4cab63f69d96c0a823bc34c91ac8ca/collective.folderishtypes-1.0b2.tar.gz" } ], "1.0b3": [ { "comment_text": "", "digests": { "md5": "1879dd3f510c0d3f5c8acfc54eb3f39b", "sha256": "a3ac76d75da9658260825f029e59383c91d72e4683d99280aa9b66f8c903d9b7" }, "downloads": -1, "filename": "collective.folderishtypes-1.0b3.tar.gz", "has_sig": false, "md5_digest": "1879dd3f510c0d3f5c8acfc54eb3f39b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20823, "upload_time": "2011-03-22T13:06:25", "url": "https://files.pythonhosted.org/packages/1a/0c/f008be6ad31b5e507a24a060d10b131ef1fae3394c22516ee14364f90fbb/collective.folderishtypes-1.0b3.tar.gz" } ], "1.0b4": [ { "comment_text": "", "digests": { "md5": "155b1568a7bcfa51cea011dd46e75681", "sha256": "891bf0cfb4a6ccded890c0042bf97bfbdfb8b3d10798a31b52fe5c3540561a52" }, "downloads": -1, "filename": "collective.folderishtypes-1.0b4.tar.gz", "has_sig": false, "md5_digest": "155b1568a7bcfa51cea011dd46e75681", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22350, "upload_time": "2011-09-07T13:57:25", "url": "https://files.pythonhosted.org/packages/ac/61/15c031780d56adc4166fbb0ed2af195ed53a4aac297ac5dd9e476d2bea6e/collective.folderishtypes-1.0b4.tar.gz" } ], "1.0b5": [ { "comment_text": "", "digests": { "md5": "c7578d8c7748f37fa9a409881e687195", "sha256": "e5fc81dd4cd19dcd0001fe9ad0982404fd306be2bfdf847e5a96f56ec598b978" }, "downloads": -1, "filename": "collective.folderishtypes-1.0b5.tar.gz", "has_sig": false, "md5_digest": "c7578d8c7748f37fa9a409881e687195", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22669, "upload_time": "2011-09-07T15:09:12", "url": "https://files.pythonhosted.org/packages/1f/b3/2eae5752a756d12475259f48486193b4388387f1193fc2726c57867d18b5/collective.folderishtypes-1.0b5.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "10e1ed79aeb0c5c0ec07f75489de3fb4", "sha256": "e6b2ed68025d2d7f05d7c791f34e9bdc64d8152b790672ce589b895ddd960125" }, "downloads": -1, "filename": "collective.folderishtypes-1.1.tar.gz", "has_sig": false, "md5_digest": "10e1ed79aeb0c5c0ec07f75489de3fb4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23627, "upload_time": "2012-02-04T06:07:08", "url": "https://files.pythonhosted.org/packages/62/92/197061616802c0d9aab7a65db8de3818f7abd7a54443384135aa07c53c68/collective.folderishtypes-1.1.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "048a606be73dc119f76a24918020abf4", "sha256": "164973b2cf7038eab602274bd624504a05b88af504c5c04ca5fb98f0dfc6d0fa" }, "downloads": -1, "filename": "collective.folderishtypes-1.1.1.tar.gz", "has_sig": false, "md5_digest": "048a606be73dc119f76a24918020abf4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23716, "upload_time": "2012-02-05T16:15:05", "url": "https://files.pythonhosted.org/packages/d7/18/c7181370e826e009dc6589db781c2bec500eb58604c6937a7c291dc5cdc3/collective.folderishtypes-1.1.1.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "7f690c7331d8bfa2bfcc7674e3072319", "sha256": "73fa206683f5bdc2e34af9ef6ba213cd03ea893ce851274d77081e30569c99e0" }, "downloads": -1, "filename": "collective.folderishtypes-1.2.tar.gz", "has_sig": false, "md5_digest": "7f690c7331d8bfa2bfcc7674e3072319", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25397, "upload_time": "2012-09-04T17:17:58", "url": "https://files.pythonhosted.org/packages/59/35/a9064b09b90183c7fcdafb3ac557592a18e0e559422eff05291869f8ccd0/collective.folderishtypes-1.2.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "1d2c04fdf1d0d8c46c2eda265244d7de", "sha256": "8d52a28d76ce0ae988ad80a45f37a90667a2d90cd41829cf67b3064738651109" }, "downloads": -1, "filename": "collective.folderishtypes-1.2.1.tar.gz", "has_sig": false, "md5_digest": "1d2c04fdf1d0d8c46c2eda265244d7de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25189, "upload_time": "2012-09-06T10:42:48", "url": "https://files.pythonhosted.org/packages/2c/2b/4742b9e5c97d438e5927a8cb1bcea589012b3ae2657d37f6e49d7bc37131/collective.folderishtypes-1.2.1.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "55f1dd30a65c385c9c6252f65a405161", "sha256": "e37a5afe6fa5afb3350fb9a33c07055b9f655add6f84ea08649ad95189b5bff9" }, "downloads": -1, "filename": "collective.folderishtypes-1.3.tar.gz", "has_sig": false, "md5_digest": "55f1dd30a65c385c9c6252f65a405161", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26532, "upload_time": "2012-11-26T11:46:01", "url": "https://files.pythonhosted.org/packages/4b/87/c1dec12518b7eabd443c78eca2c6d3ecd0c09fbe4233d2cfbd77c728d2fa/collective.folderishtypes-1.3.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "f4c45d670e1a25728dddd610b44f14b3", "sha256": "070062e48939afb3ae9380195ebf29cd24f80e64a2d97c652a5859c2d91a8016" }, "downloads": -1, "filename": "collective.folderishtypes-1.4.tar.gz", "has_sig": false, "md5_digest": "f4c45d670e1a25728dddd610b44f14b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26935, "upload_time": "2012-11-28T17:48:58", "url": "https://files.pythonhosted.org/packages/3b/2f/e6d94eab6f02930a1a5160504fa9dfd68bcab3828503aee68ca1f1762626/collective.folderishtypes-1.4.tar.gz" } ], "1.5": [ { "comment_text": "", "digests": { "md5": "aa18747fb454df8f33f0b58f0c5f78cc", "sha256": "237a8b233629759b18199511756d656e5e001b7a370be018ebcb3f252aad8653" }, "downloads": -1, "filename": "collective.folderishtypes-1.5.tar.gz", "has_sig": false, "md5_digest": "aa18747fb454df8f33f0b58f0c5f78cc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27135, "upload_time": "2012-11-30T10:48:05", "url": "https://files.pythonhosted.org/packages/0c/29/4905df51472a5639fbbae5dde0da484fc7f5b20ae8a6e200b0296819b778/collective.folderishtypes-1.5.tar.gz" } ], "1.6": [ { "comment_text": "", "digests": { "md5": "9002c4d51d4bb604455c11ab5efbfd4b", "sha256": "d63dd12268b39ee832a93d3af2719671576a54749d51e5fc102fbd4fa4e718a9" }, "downloads": -1, "filename": "collective.folderishtypes-1.6.tar.gz", "has_sig": false, "md5_digest": "9002c4d51d4bb604455c11ab5efbfd4b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28205, "upload_time": "2013-04-23T15:53:02", "url": "https://files.pythonhosted.org/packages/c1/de/9bfc14757bbf46ef4391d5432268242fec5ad9476137a62fcf66a8f5dd10/collective.folderishtypes-1.6.tar.gz" } ], "1.7": [ { "comment_text": "", "digests": { "md5": "83b43309f0dfad018edf7c5ae318dd95", "sha256": "4a51336bed851f79bb736210fff6808b5bc932430ff500e76f03f99bc1228e3d" }, "downloads": -1, "filename": "collective.folderishtypes-1.7.tar.gz", "has_sig": false, "md5_digest": "83b43309f0dfad018edf7c5ae318dd95", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31039, "upload_time": "2013-08-23T08:21:12", "url": "https://files.pythonhosted.org/packages/6b/03/1a2f69725769c630b3f1941646c343d7e9719474ec2f68d4a5311bba4f4b/collective.folderishtypes-1.7.tar.gz" } ], "1.8": [ { "comment_text": "", "digests": { "md5": "8493f69f3fb329d0c688eab72cf91303", "sha256": "6d6e090a85d9b75459f2613826d247ac5bc42170e934a2d966926f4bf915cb9e" }, "downloads": -1, "filename": "collective.folderishtypes-1.8.tar.gz", "has_sig": false, "md5_digest": "8493f69f3fb329d0c688eab72cf91303", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31183, "upload_time": "2013-11-22T23:27:40", "url": "https://files.pythonhosted.org/packages/ad/cd/2135ebdf629ea2342cb588e6e1dcd26a66600eab21a73d6a9fa63e235cd0/collective.folderishtypes-1.8.tar.gz" } ], "1.9": [ { "comment_text": "", "digests": { "md5": "c64d0bc72f84973e0e870f8d1318e658", "sha256": "51109d832a9f9743abd9ce77612bc5b3a6a7c74dd424ccc2f8fea780aaedff40" }, "downloads": -1, "filename": "collective.folderishtypes-1.9.tar.gz", "has_sig": false, "md5_digest": "c64d0bc72f84973e0e870f8d1318e658", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33279, "upload_time": "2014-10-02T04:29:13", "url": "https://files.pythonhosted.org/packages/d3/17/276b460b8e0979ae86c8ae38ad82ae8e8e3ad067b80041107ccbbfefe33f/collective.folderishtypes-1.9.tar.gz" } ], "2.0": [ { "comment_text": "", "digests": { "md5": "96b5c2c3bcff54326be29272845dcf29", "sha256": "c4c5f174eca75c2baa8f4933ff4fe55996a11ac6933f5135701feff94ed8c1ab" }, "downloads": -1, "filename": "collective.folderishtypes-2.0.tar.gz", "has_sig": false, "md5_digest": "96b5c2c3bcff54326be29272845dcf29", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36799, "upload_time": "2015-03-04T03:39:37", "url": "https://files.pythonhosted.org/packages/6f/be/617e6c8b4090939e1dcd29f9ab22a588a6266a36519d58acaffddba4677c/collective.folderishtypes-2.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "259e039f59689d6a8276e931b76da1fd", "sha256": "31d75e35f25bc61f0dc42a89864dc29730aef9f4783c5efb4df87118e7d0c33a" }, "downloads": -1, "filename": "collective.folderishtypes-2.0.1.tar.gz", "has_sig": false, "md5_digest": "259e039f59689d6a8276e931b76da1fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36208, "upload_time": "2015-04-08T08:52:11", "url": "https://files.pythonhosted.org/packages/81/2b/a80d955833e4095dfd636989dd883830d63733c6c18043dca655f52ebd40/collective.folderishtypes-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "e74039e707166ac4e088a7f97511fad0", "sha256": "536274201d206d1b5515dd30433fd4c40e8a774dc361c270d6c147824ff92036" }, "downloads": -1, "filename": "collective.folderishtypes-2.0.2.tar.gz", "has_sig": false, "md5_digest": "e74039e707166ac4e088a7f97511fad0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36406, "upload_time": "2015-06-30T11:11:02", "url": "https://files.pythonhosted.org/packages/bf/e7/199ebe0b7adf06d62788e5373e5763bb13a087c6004c654cae7c92dbf4cd/collective.folderishtypes-2.0.2.tar.gz" } ], "2.0b1": [ { "comment_text": "", "digests": { "md5": "f912d87a305c23319160b789f7f90493", "sha256": "6a293f938d53f63de6b4d7fd8fc1f26bdbc6562473050e7faa1f41f0c115dd64" }, "downloads": -1, "filename": "collective.folderishtypes-2.0b1.tar.gz", "has_sig": false, "md5_digest": "f912d87a305c23319160b789f7f90493", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21663, "upload_time": "2014-10-02T10:45:48", "url": "https://files.pythonhosted.org/packages/6b/35/620dcbc9ac33cd44ee4bf0baba67af036270f460c5d114c00c3c39413722/collective.folderishtypes-2.0b1.tar.gz" } ], "2.0b2": [ { "comment_text": "", "digests": { "md5": "aa513d8b0ae0c741e761bdfec5dffc82", "sha256": "012b9efc92dea2449df496db990a07b0a90cee965c837b46827e9d9917773b5f" }, "downloads": -1, "filename": "collective.folderishtypes-2.0b2.tar.gz", "has_sig": false, "md5_digest": "aa513d8b0ae0c741e761bdfec5dffc82", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35599, "upload_time": "2014-10-17T09:42:29", "url": "https://files.pythonhosted.org/packages/6a/d2/1bcabaa109b1ebb11b92dfdfeacabfaacdd335e35f12f0e3728f82cd8dd5/collective.folderishtypes-2.0b2.tar.gz" } ], "2.1": [ { "comment_text": "", "digests": { "md5": "aa77ae2ca5c07e3306925cf6d605d6a0", "sha256": "c072a77aa78f6da49b75c15bd74ea3bc9e8afca83f7116e8ee81550fa09ce64c" }, "downloads": -1, "filename": "collective.folderishtypes-2.1.tar.gz", "has_sig": false, "md5_digest": "aa77ae2ca5c07e3306925cf6d605d6a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39321, "upload_time": "2017-10-03T10:09:43", "url": "https://files.pythonhosted.org/packages/9c/47/5e982ff5c689e47094851ec877352ca37e1e2a4291235054bd690604cc7e/collective.folderishtypes-2.1.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "8e84b9f63851d29c4cfc11fef5f3827e", "sha256": "b680fa438a628a0952498196a7d56653489c80f16186fc7a4dd5a800044911b5" }, "downloads": -1, "filename": "collective.folderishtypes-2.2.0.tar.gz", "has_sig": false, "md5_digest": "8e84b9f63851d29c4cfc11fef5f3827e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39781, "upload_time": "2019-03-21T13:02:49", "url": "https://files.pythonhosted.org/packages/37/0c/136b472ab7c67e1d8f0eb7e4720078edd9f84de628a545c929112933774e/collective.folderishtypes-2.2.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "8e84b9f63851d29c4cfc11fef5f3827e", "sha256": "b680fa438a628a0952498196a7d56653489c80f16186fc7a4dd5a800044911b5" }, "downloads": -1, "filename": "collective.folderishtypes-2.2.0.tar.gz", "has_sig": false, "md5_digest": "8e84b9f63851d29c4cfc11fef5f3827e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39781, "upload_time": "2019-03-21T13:02:49", "url": "https://files.pythonhosted.org/packages/37/0c/136b472ab7c67e1d8f0eb7e4720078edd9f84de628a545c929112933774e/collective.folderishtypes-2.2.0.tar.gz" } ] }