{ "info": { "author": "Plone Foundation", "author_email": "plone-developers@lists.sourceforge.net", "bugtrack_url": null, "classifiers": [ "Environment :: Web Environment", "Framework :: Plone", "Framework :: Plone :: 5.1", "Framework :: Plone :: 5.2", "Framework :: Zope2", "Framework :: Zope :: 4", "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8" ], "description": "Introduction\n============\n\nplone.app.contentmenu contains the logic that powers Plone's content menu which is part of the toolbar.\n\nIt provides the menus items (and its submenues) for\n\n- factories menu (order=10)\n- workflows menu (order=20)\n- actions menu (order=30)\n- display menu (order=40)\n- manage portlets menu (order=50)\n\nNote that menu items are ordered by an 'ordered' property.\nTo allow third party products to slot their own sub-menus in between the default menu items, these are registered with gaps.\n\nCustom menus\n============\n\nCustom menus are registered in ``configure.zcml`` like so::\n\n \n\nim ``menu.py`` the class looks like so::\n\n # -*- coding: utf-8 -*-\n from plone.memoize.instance import memoize\n from zope.browsermenu.interfaces import IBrowserMenu\n from zope.browsermenu.menu import BrowserMenu\n from zope.browsermenu.menu import BrowserSubMenuItem\n from zope.component import getMultiAdapter\n from zope.i18nmessageid import MessageFactory\n from zope.interface import implementer\n\n _ = MessageFactory('my.fancy')\n\n\n class IMyMainMenuItem(IBrowserMenu):\n \"\"\"The main my menu item.\n\n You may want to place this in interfaces.py\n \"\"\"\n\n\n class IMyMenu(IBrowserMenu):\n \"\"\"The my menu.\n\n You may want to place this in interfaces.py\n \"\"\"\n\n\n @implementer(IMyMainMenuItem)\n class MyMainMenuItem(BrowserSubMenuItem):\n # This is in fact a submenu item of the parent menu, thus the name\n # of the inherited class tells it, don't be confused.\n\n title = _(u'label_my_menu', default=u'My')\n description = _(u'title_my_menu',\n default=u'My for the current content item')\n submenuId = 'my_fance_menu'\n\n order = 35\n extra = {\n 'id': 'my-fance-menu',\n 'li_class': 'plonetoolbar-content-my-fancy'\n }\n\n def __init__(self, context, request):\n super(BrowserSubMenuItem, self).__init__(context, request)\n self.context_state = getMultiAdapter(\n (context, request),\n name='plone_context_state'\n )\n\n @property\n def action(self):\n # return the url to be loaded if clicked on the link.\n # even if a submenu exists it will be active if javascript is disbaled\n return self.context.absolute_url()\n\n @memoize\n def available(self):\n # check if the menu is available and shown or not\n return True\n\n def selected(self):\n # check if the menu should be shown as selected\n return False\n\n\n @implementer(IMyMenu)\n class ActionsMenu(BrowserMenu):\n\n def getMenuItems(self, context, request):\n \"\"\"Return menu item entries in a TAL-friendly form.\"\"\"\n results = []\n\n # here a single item is added. do what needed to add several entrys\n results.append({\n 'title': 'My item 1',\n 'description': 'An my item',\n 'action': '/url/to/action',\n 'selected': False,\n 'icon': 'some_icon_class',\n 'extra': {\n 'id': 'plone-contentmenu-my-fancy-one',\n 'separator': None,\n 'class': 'my-class pat-plone-modal',\n 'modal': 'width: 400'\n },\n 'submenu': None,\n })\n\n return results\n\n\nSource Code\n===========\n\nContributors please read the document `Process for Plone core's development `_\n\nSources are at the `Plone code repository hosted at Github `_.\n\nChangelog\n=========\n\n.. You should *NOT* be adding new change log entries to this file.\n You should create a file in the news directory instead.\n For helpful instructions, please see:\n https://github.com/plone/plone.releaser/blob/master/ADD-A-NEWS-ITEM.rst\n\n.. towncrier release notes start\n\n2.3.0 (2019-06-27)\n------------------\n\nNew features:\n\n\n- Add support for Python 3.8 [pbauer] (#25)\n\n\n2.2.4 (2018-09-23)\n------------------\n\nBug fixes:\n\n- Fix sorting of portletmanager-menuitems in py3.\n [pbauer]\n\n\n2.2.3 (2018-02-05)\n------------------\n\nBug fixes:\n\n- Use ``get_installer`` in tests. [maurits]\n\n\n2.2.2 (2017-02-12)\n------------------\n\nBug fixes:\n\n- Fix portlets ZCML title registration.\n [gforcada]\n\n2.2.1 (2016-11-10)\n------------------\n\nBug fixes:\n\n- Don't extract dynamic messages with i18ndude.\n [vincentfretin]\n\n\n2.2 (2016-11-01)\n----------------\n\nNew features:\n\n- Make portlet manager names translatable. Add an \"All\" option for portlet\n manager management.\n [alecm]\n\n- Display menu reorganization. Selected view/item should be on top of section\n and headings should appear as headings.\n [alecm]\n\n- Add ability to specify a short title for the collapsed sidebar by setting\n extras['shortTitle'], in the same way as stateTitle.\n [MatthewWilkes]\n\nBug fixes:\n\n- Add default icon for top-level toolbar entries\n [alecm]\n\n- Code cleanup.\n [gforcad]\n\n\n2.1.9 (2016-10-03)\n------------------\n\nNew features:\n\n- Documentation in README added.\n [jensens]\n\nBug fixes:\n\n- Minor code cleanup, some micro-optimizations.\n [jensens]\n\n\n2.1.8 (2016-05-26)\n------------------\n\nFixes:\n\n- Optimized display menu's check for `index_html`.\n [davisagli]\n\n\n2.1.7 (2016-02-19)\n------------------\n\nFixes:\n\n- Fixed test (don't expect role from pac-tests). [pbauer]\n\n\n2.1.6 (2015-08-20)\n------------------\n\n- Fix: Permission check ``ManageWorkflowPolicies`` was always on fallback to\n ``ManagerPortal``. Now checks the correct permission after using the\n pkg_resources.get_distribution api for checking (never catch an ImportError).\n [jensens]\n\n- pep8, zca decorators, plone code conventions\n [jensens]\n\n- do not open manage portlets in a modal\n [vangheem]\n\n\n2.1.5 (2015-07-18)\n------------------\n\n- hide submenu so screen readers do not read full contents every time\n [vangheem]\n\n- get rid of \"more options\", reorder menu, show actions in\n folder contents, better accessibility.\n [vangheem]\n\n\n2.1.4 (2015-05-05)\n------------------\n\n- Rerelease due to double distribution ending up on PyPI.\n [maurits]\n\n\n2.1.3 (2015-05-04)\n------------------\n\n- Change test-setup to allow testing AT and DX.\n [pbauer]\n\n- Fix Dexterity tests to use plone.app.contenttypes' browser layer. Fix tests\n to work with new plone.app.contenttypes unified view names.\n [thet]\n\n- Don't show the menu-item to add content to a folderish default_page if no\n content can be added to it.\n [pbauer]\n\n- pat-modal pattern has been renamed to pat-plone-modal\n [jcbrand]\n\n\n2.1.2 (2014-10-23)\n------------------\n\n- Fix \"Manage Portlets\" menus not appearing for \"Site Administrators\".\n [@rpatterson]\n\n- Integration of the new markup update and CSS for both Plone and Barceloneta\n theme. This is the work done in the GSOC Barceloneta theme project.\n [albertcasado, sneridagh]\n\n- New toolbar markup based in ul li tags for the contentActions menus.\n [albertcasado, sneridagh]\n\n\n2.1.1 (2014-04-13)\n------------------\n\n- Add csrf tokens to menu urls that need it.\n- Allow custom modal attributes for more links\n [do3cc]\n\n\n2.1.0 (2014-02-26)\n------------------\n\n- Add markup changes related to new Barceloneta theme.\n [bloodbare]\n\n\n2.0.9 (2014-01-27)\n------------------\n\n- Don't break if there's no portal_actionicons tool.\n [davisagli]\n\n- Ported tests to plone.app.testing\n [tomgross]\n\n\n2.0.8 (2013-03-05)\n------------------\n\n\n2.0.7 (2012-12-09)\n------------------\n\n- add prefix to id tag for display menu dropdown items, fixes #11927 and #10894\n [maartenkling]\n\n2.0.6 (2012-07-02)\n------------------\n\n- Use zope.browsermenu and remove Zope 2.12 BBB code.\n [hannosch]\n\n2.0.5 (2012-02-07)\n------------------\n\n- Restore the workflow menu on the folder contents page as it is the\n only way to change the state of the folder when it has a default\n page. Improves the fix to http://dev.plone.org/plone/ticket/8908.\n [rossp]\n\n2.0.4 - 2011-07-04\n------------------\n\n- Set height/width of contentmenu icons through browser menu code.\n [thomasdesvenain]\n\n2.0.3 - 2011-05-12\n------------------\n\n- We need permission to see Placeful policy in workflow menu.\n [thomasdesvenain]\n\n2.0.2 - 2011-01-03\n------------------\n\n- Depend on ``Products.CMFPlone`` instead of ``Plone``.\n [elro]\n\n- Add test coverage for factory expression context when a front-page object is\n used for a folder. Fix in plone.app.content.\n [rossp]\n\n- Fix the addContext in the FactoriesSubMenuItem to make it possible to add\n content to a folderish object that set as the default view on its parent folder.\n This closes http://dev.plone.org/plone/ticket/10953.\n [WouterVH]\n\n\n2.0.1 - 2010-07-18\n------------------\n\n- Update license to GPL version 2 only.\n [hannosch]\n\n\n2.0 - 2010-07-01\n----------------\n\n- Adding \"deactivated\" class to menus by default, so they won't flicker on load.\n This fixes http://dev.plone.org/plone/ticket/10470.\n [limi]\n\n\n2.0b3 - 2010-06-13\n------------------\n\n- Added optional compatibility with zope.browsermenu.\n [hannosch]\n\n\n2.0b2 - 2010-02-17\n------------------\n\n- Show \"add new\" menu when there are one or more addable types. Showing a link\n when only one type was addable caused conflicts with the dropdown JavaScript.\n Closes http://dev.plone.org/plone/ticket/10193.\n [esteele, davisagli]\n\n- Query the types tool instead of the action tools to find add actions\n in FactoriesSubMenuItem. This fixes a discrepancy in action URLs.\n http://dev.plone.org/plone/ticket/10207\n [wichert]\n\n\n2.0b1 - 2010-01-24\n------------------\n\n- Removed the checking for hideChildren when a single item is present, this\n makes the styling consistent again. The menu is really a one-item menu, and we\n put it in the header as a shortcut that you can click directly. This fixes\n http://dev.plone.org/plone/ticket/9735\n [limi]\n\n\n2.0a2 - 2009-12-27\n------------------\n\n- Adjust factory menu to use the new getIconExprObject method.\n [hannosch]\n\n- Removed no longer required zope.site dependency.\n [hannosch]\n\n- Hide the actions, display and workflow menus on the folder contents page.\n This closes http://dev.plone.org/plone/ticket/8908.\n [hannosch]\n\n- Avoid a bogus getToolByName indirection via getSite().\n [hannosch]\n\n- Noted missing zope.publisher dependency and prefer absolute imports.\n [hannosch]\n\n- Mark selected display always with 'actionMenuSelected' class and\n stop using bullet points. References\n http://dev.plone.org/plone/ticket/9894\n [dukebody]\n\n\n2.0a1 - 2009-11-14\n------------------\n\n- Specified package dependencies and assorted cleanups.\n [hannosch]\n\n- Avoid a deprecation warning for calling the ``actions`` method from the\n context_state state view without passing in an action category.\n [hannosch]\n\n- Updated action and icon handling in the actions menu to take advantage of the\n icon being stored on the action itself.\n [hannosch]\n\n- Added support for the new add_view_expr property available on FTIs. This can be\n used to construct a URL for add views.\n [optilude]\n\n\n1.1.7 - 2009-03-07\n------------------\n\n- Made a test independent of an internal sort order.\n [hannosch]\n\n- Escape the title of the defaultpage in the DisplayMenu. This fixes a potential\n xss attack and http://dev.plone.org/plone/ticket/8377.\n [csenger]\n\n- Added the prefix \"folder-\" to the CSS id of the folder part of the view\n contentmenu. This closes http://dev.plone.org/plone/ticket/8375.\n [realefab]\n\n\n1.1.6 - 2008-10-07\n------------------\n\n- Fix on factories menu, showing constrain options only when there are types to\n constrain. This closes http://dev.plone.org/plone/ticket/8213.\n [igbun]\n\n- Fix non XML syntax compliant ids in contentmenus. This closes\n http://dev.plone.org/plone/ticket/8195\n [garbas,calvinhp]\n\n\n1.1.5 - 2008-08-18\n------------------\n\n- Add a span with a \"noMenuAction\" class around disable menus, allowing them\n to be styled.\n [wichert]\n\n\n1.1.3 - 2008-07-07\n------------------\n\n- Adjusted tests to reflect new behavior introduced by the last change.\n [hannosch]\n\n- Do not show the display menu if it is disabled (i.e. there is an index_html\n item in the folder). The previous behavior was confusing for users: the\n description with the hint to remove the index_html object was never shown\n and users only got a unusable menu item. The new behavior makes the display\n menu consistent with other parts of the Plone UI.\n [wichert]\n\n- Add an actionMenuSelected class to selected menu items so they can be\n styled (same class as used in Plone 2.5). Do not remove the \n tag around the • for selected items so it can be removed when\n proper CSS styling is used.\n [wichert]\n\n\n1.0.7 - 2008-03-09\n------------------\n\n- Correct the content menu html: the icons in menus should have an empty\n alt-attribute since the alternative text if no image can be seen is the label\n of the menu item itself. Move the description to the title attribute so it\n still shows up as tooltip.\n [wichert]\n\n- Fixed an issue with non ISelectableBrowserDefault aware content.\n This closes http://dev.plone.org/plone/ticket/7226.\n [deo]\n\n\n1.0.6 - 2008-01-06\n------------------\n\n- Fixed display menu to show the default page title correctly when the\n default-page is not a contained content item with DC metadata fields.\n Thanks to George Lee for finding this.\n [optilude]\n\n\n1.0.5 - 2008-01-02\n------------------\n\n- Fixed display menu to show the default page title when not currently\n viewing it as well as the display of markup contained in translations.\n This fixes http://dev.plone.org/plone/ticket/7281.\n [witsch]\n\n- Removed loop that does nothing in plone.app.contentmenu.menu, in\n WorkflowMenu.getMenuItems().\n [dreamcatcher]\n\n1.0.3 - 2007-11-09\n------------------\n\n- Fixed another translation problem in the factory menu when only one type\n was shown. This closes http://dev.plone.org/plone/ticket/7023.\n [hannosch]\n\n- Fixed more translation problems with the display menu.\n This closes http://dev.plone.org/plone/ticket/6838 again and\n http://dev.plone.org/plone/ticket/7115 as well.\n [hannosch]\n\n- Fixed display menu to properly show content item titles with non-ascii chars.\n This closes http://dev.plone.org/plone/ticket/6838.\n [hannosch]\n\n- Do not show the add item menu anymore on normal content, but just on\n folderish and default pages. This closes\n http://dev.plone.org/plone/ticket/6744.\n [hannosch]\n\n- Fixed variable name in the label_item_selected message id. This closes\n http://dev.plone.org/plone/ticket/6584.\n [hannosch]\n\n- Normalized typeIds on the factories menu, as these are used as CSS ids\n and would otherwise fail W3C validation for types with a space in the\n name. This closes http://dev.plone.org/plone/ticket/6259.\n [hannosch]\n\n- Set kssIgnore class on workflow actions that define their own screens.\n [ldr]\n\n\n1.0b1 - 2007-03-05\n------------------\n\n- Initial package structure.\n [zopeskel]\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://pypi.org/project/plone.app.contentmenu", "keywords": "plone contentmenu menu", "license": "GPL version 2", "maintainer": "", "maintainer_email": "", "name": "plone.app.contentmenu", "package_url": "https://pypi.org/project/plone.app.contentmenu/", "platform": "", "project_url": "https://pypi.org/project/plone.app.contentmenu/", "project_urls": { "Homepage": "https://pypi.org/project/plone.app.contentmenu" }, "release_url": "https://pypi.org/project/plone.app.contentmenu/2.3.0/", "requires_dist": [ "setuptools", "plone.locking", "plone.memoize", "plone.app.content (>=2.0a3)", "zope.browsermenu", "zope.component", "zope.contentprovider", "zope.interface", "zope.i18n", "zope.i18nmessageid", "zope.publisher", "Acquisition", "Products.CMFCore", "Products.CMFDynamicViewFTI", "Products.CMFPlone", "plone.protect (>=3.0.0a1)", "Zope2", "plone.app.testing ; extra == 'test'", "plone.app.contenttypes ; extra == 'test'", "six ; extra == 'test'" ], "requires_python": "", "summary": "Plone's content menu implementation", "version": "2.3.0" }, "last_serial": 5458567, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "9ca4607e5a0395f9e096cd1943c9c913", "sha256": "1f52958bed54eb3ef07a5557d3caf14e46551d97ed1f2317ae0226a1fa54e5d6" }, "downloads": -1, "filename": "plone.app.contentmenu-1.0-py2.4.egg", "has_sig": false, "md5_digest": "9ca4607e5a0395f9e096cd1943c9c913", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 37532, "upload_time": "2007-08-17T01:26:22", "url": "https://files.pythonhosted.org/packages/4e/24/a4abb21ebed9be4b7f39fae879f24663547268376937e22f24f40d6ae8c2/plone.app.contentmenu-1.0-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "16e6e65dc23697f03ec950d417ee6730", "sha256": "5aa7084d72aaf351c0026c5c3e755d50859d357357a469211a463260479af60d" }, "downloads": -1, "filename": "plone.app.contentmenu-1.0.tar.gz", "has_sig": false, "md5_digest": "16e6e65dc23697f03ec950d417ee6730", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19431, "upload_time": "2007-08-17T01:26:21", "url": "https://files.pythonhosted.org/packages/a4/26/ad363eafe8a63fda25ea6ad603d9db2d2d6e748ef42ddb94739f6314728c/plone.app.contentmenu-1.0.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "efcf453406ce37160154839b0bfd87d8", "sha256": "cd074caad8920015ee5f8f61d18fb2a5807bc01b89c707927339032d0e1c0247" }, "downloads": -1, "filename": "plone.app.contentmenu-1.0.2-py2.4.egg", "has_sig": false, "md5_digest": "efcf453406ce37160154839b0bfd87d8", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 37751, "upload_time": "2007-10-08T21:37:19", "url": "https://files.pythonhosted.org/packages/57/7d/d4969469ae07914bd98013e37f9b46e95bcd7f15f54a1d07da16e1fb5f02/plone.app.contentmenu-1.0.2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "99c8cdabc02d03f76188f533bb93a90f", "sha256": "b7c17c6d5e4f4f33c3bacdd05560817821c0157b6c6386cb732eef24a714b74e" }, "downloads": -1, "filename": "plone.app.contentmenu-1.0.2.tar.gz", "has_sig": false, "md5_digest": "99c8cdabc02d03f76188f533bb93a90f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19548, "upload_time": "2007-10-08T21:37:19", "url": "https://files.pythonhosted.org/packages/2d/71/a81e0faf91f07e7433be3e79763f0ddd058ba63504e66ff89472427b269f/plone.app.contentmenu-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "25923f434cdb81b319500c9237d5a5ec", "sha256": "2d686bd806be6c1c957d6b93f6cdd5399a18d7e1a02fe3fd491909996fcc8fdd" }, "downloads": -1, "filename": "plone.app.contentmenu-1.0.3-py2.4.egg", "has_sig": false, "md5_digest": "25923f434cdb81b319500c9237d5a5ec", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 37697, "upload_time": "2007-11-09T00:32:57", "url": "https://files.pythonhosted.org/packages/a2/81/7da0e181da2b0603fa4f773d1f4834f56f88e5a32cd3a830e62312c228d1/plone.app.contentmenu-1.0.3-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "9bc7718f4b7c6390cc970d5540f4f2db", "sha256": "60a1f7cc39ebd0923b77f5e7cac103b870caf75bab92e4167633209ec16732c1" }, "downloads": -1, "filename": "plone.app.contentmenu-1.0.3.tar.gz", "has_sig": false, "md5_digest": "9bc7718f4b7c6390cc970d5540f4f2db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19560, "upload_time": "2007-11-09T00:32:56", "url": "https://files.pythonhosted.org/packages/e0/d4/4be13cd2b7886fab1684b05d4df9abd4012e4f9c60bf4ecbe0515d794575/plone.app.contentmenu-1.0.3.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "7d6b7b8e2efb5496057fb3bed831901f", "sha256": "afa86b2f7d847c1db8e5d3fded6a8315919f9249ea84b32e66f49a8ca223f61b" }, "downloads": -1, "filename": "plone.app.contentmenu-1.0.5-py2.4.egg", "has_sig": false, "md5_digest": "7d6b7b8e2efb5496057fb3bed831901f", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 37744, "upload_time": "2008-01-02T23:25:56", "url": "https://files.pythonhosted.org/packages/d6/6e/844d9a2d53d9d1b932cfaa96100cde24668d74d3f8057dd5d8fdd1517be9/plone.app.contentmenu-1.0.5-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "44a6703d61f1ef2f5b0e0b084b78c506", "sha256": "9908f0f46ab5ebcb3a68e9b6191258fe8a74dee18fdb53e4293a1e5e6d9c058e" }, "downloads": -1, "filename": "plone.app.contentmenu-1.0.5.tar.gz", "has_sig": false, "md5_digest": "44a6703d61f1ef2f5b0e0b084b78c506", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19703, "upload_time": "2008-01-02T23:25:56", "url": "https://files.pythonhosted.org/packages/93/05/627f89685e1270611e18f2bfdd348a38bbfebde80aefe9924c149cd49c32/plone.app.contentmenu-1.0.5.tar.gz" } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "6239c8a9f146c4102cb0fc567bdf99a9", "sha256": "9c14a7838f1780035e81d1058c81883551aae8ffcaaadde53681ae4aa593d6f7" }, "downloads": -1, "filename": "plone.app.contentmenu-1.0.6-py2.4.egg", "has_sig": false, "md5_digest": "6239c8a9f146c4102cb0fc567bdf99a9", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 38217, "upload_time": "2008-01-06T00:02:02", "url": "https://files.pythonhosted.org/packages/c5/cb/6e1c903140a3fef702849b4e482475da89ea759c44e377c68545fb188597/plone.app.contentmenu-1.0.6-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "3632e373aedc270e41106491d6002c94", "sha256": "ae99244f660e0954a6ff2525207dc045de3ea38ba4b870b50dc8246838176419" }, "downloads": -1, "filename": "plone.app.contentmenu-1.0.6.tar.gz", "has_sig": false, "md5_digest": "3632e373aedc270e41106491d6002c94", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19954, "upload_time": "2008-01-06T00:02:01", "url": "https://files.pythonhosted.org/packages/db/ed/cda22a1ed147e295fdcaacc7cf6d12e3df194593b7eaa516af43d99c4702/plone.app.contentmenu-1.0.6.tar.gz" } ], "1.0.7": [ { "comment_text": "", "digests": { "md5": "baf4b253caab329722dc7299eb1e4b62", "sha256": "e4bfc8b706f6dc781af1eb09526921e5e07d6669c7dc5909fb32ffe74d100c61" }, "downloads": -1, "filename": "plone.app.contentmenu-1.0.7-py2.4.egg", "has_sig": false, "md5_digest": "baf4b253caab329722dc7299eb1e4b62", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 38178, "upload_time": "2008-03-09T02:22:30", "url": "https://files.pythonhosted.org/packages/2d/5a/2a5069417c215460c70eabf7e8b140e1da8c1595c499872aa80b0b97e581/plone.app.contentmenu-1.0.7-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "e8abc7cf307178d444419727f0056d9a", "sha256": "849d1a325e3c87c139686f4534fe431cce4e6b26fbea4eaa8045476c49bce021" }, "downloads": -1, "filename": "plone.app.contentmenu-1.0.7.tar.gz", "has_sig": false, "md5_digest": "e8abc7cf307178d444419727f0056d9a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19991, "upload_time": "2008-03-09T02:22:29", "url": "https://files.pythonhosted.org/packages/ac/1d/89e9f253a5de5f85d788c44cb33ea721352c233cefc4c8d1e998b78ce660/plone.app.contentmenu-1.0.7.tar.gz" } ], "1.0a2": [ { "comment_text": "", "digests": { "md5": "fc127cee318a27c0453a7499614dd91f", "sha256": "9ba395a2c103fe6529d9ee0e96785fffb156a38e19d0300b9be520dfd16f0bbe" }, "downloads": -1, "filename": "plone.app.contentmenu-1.0a2-py2.4.egg", "has_sig": false, "md5_digest": "fc127cee318a27c0453a7499614dd91f", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 22522, "upload_time": "2007-02-11T03:49:59", "url": "https://files.pythonhosted.org/packages/04/9c/7a477ca0e8ac3bcf8891dbd16f1eca04c89f8e458aeb99f6270ede7f6f99/plone.app.contentmenu-1.0a2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "8d6e2adc323d937cc914807de9453154", "sha256": "93676070057b38399018fe55f96bf9e3f4f873dff7ef8238efc299db8e49419b" }, "downloads": -1, "filename": "plone.app.contentmenu-1.0a2.tar.gz", "has_sig": false, "md5_digest": "8d6e2adc323d937cc914807de9453154", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14655, "upload_time": "2007-02-11T03:49:58", "url": "https://files.pythonhosted.org/packages/6c/26/bc7dd021597ef6643f73e1a552c6e30d1f7e60c4f243eb752b443bc65571/plone.app.contentmenu-1.0a2.tar.gz" } ], "1.0b1": [ { "comment_text": "", "digests": { "md5": "6fb30dd1c80662e0da96284c23ca4a25", "sha256": "7bc5a1890056257af7646af0f511abe58c9e6ad3143ad5a357146b0bf1e73073" }, "downloads": -1, "filename": "plone.app.contentmenu-1.0b1-py2.4.egg", "has_sig": false, "md5_digest": "6fb30dd1c80662e0da96284c23ca4a25", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 33356, "upload_time": "2007-03-04T23:00:04", "url": "https://files.pythonhosted.org/packages/a7/d1/7520ac5c96109c1b54e6404ffc6d9fba59e3bb987a5d57ca16de6fbfb48e/plone.app.contentmenu-1.0b1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "9fec3a596c7b3cea670d9d533cf3aadb", "sha256": "748691c88c86975521386e2c95b21daa2125d0a4fa3e565a978ae4c10c3c79a6" }, "downloads": -1, "filename": "plone.app.contentmenu-1.0b1.tar.gz", "has_sig": false, "md5_digest": "9fec3a596c7b3cea670d9d533cf3aadb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18387, "upload_time": "2007-03-04T23:00:03", "url": "https://files.pythonhosted.org/packages/3a/38/0a6a05c9de2672922f236b403ded2bece7edabf22dbb3702583b8f46e9b6/plone.app.contentmenu-1.0b1.tar.gz" } ], "1.0b1.1": [ { "comment_text": "", "digests": { "md5": "0e563bb69e01a3eea827c7a751278549", "sha256": "babe32afadb3843eee51e6e66c09df9ca3a56d1492faba32b36b8819eb622480" }, "downloads": -1, "filename": "plone.app.contentmenu-1.0b1.1-py2.4.egg", "has_sig": false, "md5_digest": "0e563bb69e01a3eea827c7a751278549", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 34090, "upload_time": "2007-03-25T23:01:18", "url": "https://files.pythonhosted.org/packages/7c/c4/2968145e9493b01c057abab4485f2798a69230f4ddedf7f416decb72ea49/plone.app.contentmenu-1.0b1.1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "7fb3a77e5db9e268c165bad40bc22a2b", "sha256": "ea4a3d3559accbf883c371ce34ecca2e8c4e918918d649646d678d97f80c7b6f" }, "downloads": -1, "filename": "plone.app.contentmenu-1.0b1.1.tar.gz", "has_sig": false, "md5_digest": "7fb3a77e5db9e268c165bad40bc22a2b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18332, "upload_time": "2007-03-25T23:01:16", "url": "https://files.pythonhosted.org/packages/69/4d/1d081a403565b6f7a2acf10db566ee8add5e93a79255ecce400a635dc7a6/plone.app.contentmenu-1.0b1.1.tar.gz" } ], "1.0b2": [ { "comment_text": "", "digests": { "md5": "5f87dc9cc0ecb182026598ce7de10949", "sha256": "fd54466d2c4f1dc2fb6396ec904b633390f60c9c368153fc33c8c2b320654934" }, "downloads": -1, "filename": "plone.app.contentmenu-1.0b2-py2.4.egg", "has_sig": false, "md5_digest": "5f87dc9cc0ecb182026598ce7de10949", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 37756, "upload_time": "2007-04-30T23:12:17", "url": "https://files.pythonhosted.org/packages/22/25/dead9edb5c02260ca71f4aeafa8ede88c9f672f14201f6ed49598d1b96c1/plone.app.contentmenu-1.0b2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "b01fcad658b041e16b1264ca78aeffb4", "sha256": "1a9f5b7165df6197dc0330cce8b2125c1e1a6c0604dd43f083c31d13f2c98bd9" }, "downloads": -1, "filename": "plone.app.contentmenu-1.0b2.tar.gz", "has_sig": false, "md5_digest": "b01fcad658b041e16b1264ca78aeffb4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19539, "upload_time": "2007-04-30T23:12:16", "url": "https://files.pythonhosted.org/packages/c0/79/32b3c1f021bdbbb5015810ad4a6c2916e834beb5ca5f1df4247cbc0dc00f/plone.app.contentmenu-1.0b2.tar.gz" } ], "1.0b3": [ { "comment_text": "", "digests": { "md5": "dd5e87a2fdc4baa5ef6efd2ac08b2970", "sha256": "8a0e8dccf941268b1adc26c3eece2bd4dece4e64e11e00276cac04a773467b06" }, "downloads": -1, "filename": "plone.app.contentmenu-1.0b3-py2.4.egg", "has_sig": false, "md5_digest": "dd5e87a2fdc4baa5ef6efd2ac08b2970", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 38007, "upload_time": "2007-05-05T21:41:09", "url": "https://files.pythonhosted.org/packages/25/b8/a1361219706137c9f5e6ad0b669595f366cc825439c455491beaa1b82a13/plone.app.contentmenu-1.0b3-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "1d590de18b92b0f7e8f3b21e0f2b0300", "sha256": "d59e89b400f0cbd7607d717d21804831383da0b251b817b8a8fd95532aef960f" }, "downloads": -1, "filename": "plone.app.contentmenu-1.0b3.tar.gz", "has_sig": false, "md5_digest": "1d590de18b92b0f7e8f3b21e0f2b0300", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19737, "upload_time": "2007-05-05T21:41:07", "url": "https://files.pythonhosted.org/packages/83/0b/87443923903b5e140f8d46b74dcf2c5ed28bd7c9a9c0015a226c2e51d558/plone.app.contentmenu-1.0b3.tar.gz" } ], "1.0rc1": [ { "comment_text": "", "digests": { "md5": "c20aee781ec1a3864a468394fa2e769c", "sha256": "1e7ceb3760e79bf73dd28970c60f6c7eeaf9d3650725ece1607ed7597d646d6b" }, "downloads": -1, "filename": "plone.app.contentmenu-1.0rc1-py2.4.egg", "has_sig": false, "md5_digest": "c20aee781ec1a3864a468394fa2e769c", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 37400, "upload_time": "2007-07-09T00:27:39", "url": "https://files.pythonhosted.org/packages/79/9e/57289fc3adfe1661695416e01bc8695b9f265058f37045b93b2f387b9a0d/plone.app.contentmenu-1.0rc1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "5400649ed5e060fed08e20ab26785485", "sha256": "6e40e3bc999d7eefd896b931141b4d4cdc4cb3773eccdc50af2ea3cd5d03e438" }, "downloads": -1, "filename": "plone.app.contentmenu-1.0rc1.tar.gz", "has_sig": false, "md5_digest": "5400649ed5e060fed08e20ab26785485", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19328, "upload_time": "2007-07-09T00:27:38", "url": "https://files.pythonhosted.org/packages/3c/e0/963c88ce29d3cd5ccfa203f2a9b0d29d0ad53b582a52dc3a6c02b41b88af/plone.app.contentmenu-1.0rc1.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "7f7fe545c454c9a839e8fb07689e574c", "sha256": "003ff7062eb49f7db0e3752261cf05177816a5e3a43430ff6b49cbeba0a78152" }, "downloads": -1, "filename": "plone.app.contentmenu-1.1.0-py2.4.egg", "has_sig": false, "md5_digest": "7f7fe545c454c9a839e8fb07689e574c", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 39235, "upload_time": "2008-04-21T21:29:24", "url": "https://files.pythonhosted.org/packages/d0/69/2481ca1d535560e4787954c16c67ee1788fef919f5f0ace61207caa7e35e/plone.app.contentmenu-1.1.0-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "159366d5e907bef16731e3fd3e58fc17", "sha256": "09c2973f7e4894fcf9e48cfdd4c7376fb557fe651f5ad498fa706fff82575fb5" }, "downloads": -1, "filename": "plone.app.contentmenu-1.1.0.tar.gz", "has_sig": false, "md5_digest": "159366d5e907bef16731e3fd3e58fc17", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21337, "upload_time": "2008-04-21T21:29:24", "url": "https://files.pythonhosted.org/packages/5e/dc/00f5fc39b38e25e0539c902bbec35b92c633635c4c09c3014568209d2fa8/plone.app.contentmenu-1.1.0.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "bac2bd7b9d925cafbf53208c97dc87a9", "sha256": "760fa6bf93b9a10bb78921c1e7054bc4e985d49d22f041c343aefbcac7ae29fb" }, "downloads": -1, "filename": "plone.app.contentmenu-1.1.3.tar.gz", "has_sig": false, "md5_digest": "bac2bd7b9d925cafbf53208c97dc87a9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21697, "upload_time": "2008-07-07T00:59:03", "url": "https://files.pythonhosted.org/packages/22/48/93c2d7d88cdc9d875bbe5b0cba3a75dc1e66ae1d6d607e05379df1ecc44f/plone.app.contentmenu-1.1.3.tar.gz" } ], "1.1.5": [ { "comment_text": "", "digests": { "md5": "f230ffe658c55141c6e12db4c33f9094", "sha256": "9ca238cb1f22eaee026d9ac9374f4b6bd960bd1ab806c322eb6820d0ab75f577" }, "downloads": -1, "filename": "plone.app.contentmenu-1.1.5.tar.gz", "has_sig": false, "md5_digest": "f230ffe658c55141c6e12db4c33f9094", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21964, "upload_time": "2008-08-18T21:52:04", "url": "https://files.pythonhosted.org/packages/85/17/6f12980a3974ee481aead89f11ab8a267e62e81cd3530ba5c1a09d0b0fa2/plone.app.contentmenu-1.1.5.tar.gz" } ], "1.1.6": [ { "comment_text": "", "digests": { "md5": "909d514b2a17b58d4c899b182592b609", "sha256": "0cf4bffcc22ed1e5bb347da2fc7c212dd797593d67f8315515509114ffd4b185" }, "downloads": -1, "filename": "plone.app.contentmenu-1.1.6.zip", "has_sig": false, "md5_digest": "909d514b2a17b58d4c899b182592b609", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30273, "upload_time": "2008-10-07T20:43:12", "url": "https://files.pythonhosted.org/packages/43/3c/f818c7de59bea0cc697a7c2a18d3714a8b4e2de7af2e1db24a2a0e1028eb/plone.app.contentmenu-1.1.6.zip" } ], "1.1.7": [ { "comment_text": "", "digests": { "md5": "f54f674bc6f6f90fde67d40d80592759", "sha256": "5825412026c420f329f55ffa03a9bc4290659163c07ee76d70b0b58c1d9d5daa" }, "downloads": -1, "filename": "plone.app.contentmenu-1.1.7.zip", "has_sig": true, "md5_digest": "f54f674bc6f6f90fde67d40d80592759", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30369, "upload_time": "2009-03-07T16:43:50", "url": "https://files.pythonhosted.org/packages/9c/c4/b4472d5428124b4533c1a0c8b27c7349b9bc6230aa5c32d5269320f580a6/plone.app.contentmenu-1.1.7.zip" } ], "2.0": [ { "comment_text": "", "digests": { "md5": "97b2c116f2559a9946a9ae177a1e76f2", "sha256": "5b171ecc04434051da192d4b7b6ce5fb9e78749eef132dc4456992d4923cb5d2" }, "downloads": -1, "filename": "plone.app.contentmenu-2.0.zip", "has_sig": false, "md5_digest": "97b2c116f2559a9946a9ae177a1e76f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32724, "upload_time": "2010-07-01T17:22:28", "url": "https://files.pythonhosted.org/packages/32/29/2711bcc9f366634976994cfff67521ff632ed3818a3a2752a5f1713eac0c/plone.app.contentmenu-2.0.zip" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "ac29dc2a6eba8fdc95c319ed8416723b", "sha256": "6f0a035ca43f261d72dc8dc0d8dc306c0b47a3a50c795ee434ee10ba06735912" }, "downloads": -1, "filename": "plone.app.contentmenu-2.0.1.zip", "has_sig": false, "md5_digest": "ac29dc2a6eba8fdc95c319ed8416723b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34259, "upload_time": "2010-07-18T17:15:50", "url": "https://files.pythonhosted.org/packages/f6/05/ce84b603ee19471a0b5c39c45598b4f496182b90ab59d33c87d7e1ad3975/plone.app.contentmenu-2.0.1.zip" } ], "2.0.10": [ { "comment_text": "", "digests": { "md5": "d28bc995bbe5a6f4aeabad07438ffb85", "sha256": "bc147a903c57d011d251d8ab6fc4088f72a96363e243d708aa4ce10d7bf2ae0d" }, "downloads": -1, "filename": "plone.app.contentmenu-2.0.10.zip", "has_sig": false, "md5_digest": "d28bc995bbe5a6f4aeabad07438ffb85", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37009, "upload_time": "2014-01-29T02:16:28", "url": "https://files.pythonhosted.org/packages/ff/34/c66aba7002feee44ddbe76d82876372029b98e631046214d2c7bbe5e20b4/plone.app.contentmenu-2.0.10.zip" } ], "2.0.11": [ { "comment_text": "", "digests": { "md5": "8a71e64c5e48f5c289ba23981139346a", "sha256": "571d96df96b32af636643ab3f41c9046e2e9b05f21d0145b3703f587aea64b22" }, "downloads": -1, "filename": "plone.app.contentmenu-2.0.11.tar.gz", "has_sig": false, "md5_digest": "8a71e64c5e48f5c289ba23981139346a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27456, "upload_time": "2015-08-14T15:13:59", "url": "https://files.pythonhosted.org/packages/39/67/036e7b768121084e5aa6634f33929054a5b7d3c84bc878bc7657efe769b6/plone.app.contentmenu-2.0.11.tar.gz" } ], "2.0.12": [ { "comment_text": "", "digests": { "md5": "1b3be45daca500bc8b0f9a901728e37c", "sha256": "df40afefbf28f2aac1e6f155c74d981db86e8e706f4eba445527791cbcd94f29" }, "downloads": -1, "filename": "plone.app.contentmenu-2.0.12.tar.gz", "has_sig": false, "md5_digest": "1b3be45daca500bc8b0f9a901728e37c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27560, "upload_time": "2016-05-26T19:38:29", "url": "https://files.pythonhosted.org/packages/f5/12/018936820e517822aa49a612763c87d3bb8508e5791d2c2fd651fd7faf61/plone.app.contentmenu-2.0.12.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "47d9110e860197037cf51e2d2185887d", "sha256": "5418a6b09836004f6251f95177e7ea5aacf67a2baba50e45f01b5d3f4ba63fff" }, "downloads": -1, "filename": "plone.app.contentmenu-2.0.2.zip", "has_sig": false, "md5_digest": "47d9110e860197037cf51e2d2185887d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34962, "upload_time": "2011-01-03T15:36:42", "url": "https://files.pythonhosted.org/packages/df/fa/fdd7e54a05306447316ae55f6680e13f00d3fca5a4b35c9a2b3e54284d19/plone.app.contentmenu-2.0.2.zip" } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "445dd75ca397adc887f1ae883fba5659", "sha256": "f38b4b19eb139ccc6ccccc36f595c978601217de10014f250c25fa0454b36214" }, "downloads": -1, "filename": "plone.app.contentmenu-2.0.3.zip", "has_sig": false, "md5_digest": "445dd75ca397adc887f1ae883fba5659", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35282, "upload_time": "2011-05-12T10:37:56", "url": "https://files.pythonhosted.org/packages/d7/c4/6a2cdf0fe0c9ea5fbbcf84cb1923a23a5fbc8d7e229ff2ad3bd2f920c266/plone.app.contentmenu-2.0.3.zip" } ], "2.0.4": [ { "comment_text": "", "digests": { "md5": "32109dd3a1b2c528231250fa2e5824d3", "sha256": "5407aaed80f7472d8245efce05b687359097f9b8eddc24d3b102230c58f4be36" }, "downloads": -1, "filename": "plone.app.contentmenu-2.0.4.zip", "has_sig": false, "md5_digest": "32109dd3a1b2c528231250fa2e5824d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35432, "upload_time": "2011-07-05T00:41:12", "url": "https://files.pythonhosted.org/packages/d6/1c/c7e214c4baf5a19c4cb389dcd4a11b9b317aa66f8b2b7e995c34e5fb7c3b/plone.app.contentmenu-2.0.4.zip" } ], "2.0.5": [ { "comment_text": "", "digests": { "md5": "50de3ddf80d602ab79064d652275c2e7", "sha256": "477a426970f61ee50a6b5eee39173b9a017af80651d1662a4b168247c0aef235" }, "downloads": -1, "filename": "plone.app.contentmenu-2.0.5.tar.gz", "has_sig": false, "md5_digest": "50de3ddf80d602ab79064d652275c2e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23709, "upload_time": "2012-02-08T02:48:37", "url": "https://files.pythonhosted.org/packages/5e/24/eab6aa2d014b9fb334eb9488a644ece33f4dee85f3f8488e9095fde8361c/plone.app.contentmenu-2.0.5.tar.gz" } ], "2.0.6": [ { "comment_text": "", "digests": { "md5": "b78412dad4e962e26f6f5a6a13fcc4f3", "sha256": "353c26966ffceabf9d64404a23dbad8784ec537e5acc6e4efbc86cba561e70df" }, "downloads": -1, "filename": "plone.app.contentmenu-2.0.6.zip", "has_sig": false, "md5_digest": "b78412dad4e962e26f6f5a6a13fcc4f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35761, "upload_time": "2012-07-02T16:02:42", "url": "https://files.pythonhosted.org/packages/ce/95/95ebb8febeb3a132e7bf8b8efa951f0b51f60ada37e495ad8477e6c2192f/plone.app.contentmenu-2.0.6.zip" } ], "2.0.7": [ { "comment_text": "", "digests": { "md5": "b1c7e5a37c659ba30b3a077e149b1752", "sha256": "dbfa5296d78c43e90aac63c60fa5cd44dcc280d006350b04e98674a9d6a0fe5b" }, "downloads": -1, "filename": "plone.app.contentmenu-2.0.7.zip", "has_sig": false, "md5_digest": "b1c7e5a37c659ba30b3a077e149b1752", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36243, "upload_time": "2012-12-10T06:15:27", "url": "https://files.pythonhosted.org/packages/0f/2a/ce8283b62d9a84704f88e3c350a46f522a85a75342954288d2a2c861d34d/plone.app.contentmenu-2.0.7.zip" } ], "2.0.8": [ { "comment_text": "", "digests": { "md5": "8ba463f1a164c454c70d26507e5bd22a", "sha256": "73a5ae481b628a59beaaf5b404ac59d262fcf30616be813c7e7738e04d59e3b9" }, "downloads": -1, "filename": "plone.app.contentmenu-2.0.8.zip", "has_sig": false, "md5_digest": "8ba463f1a164c454c70d26507e5bd22a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36718, "upload_time": "2013-03-05T19:36:34", "url": "https://files.pythonhosted.org/packages/3e/e9/c239de496e29d833fe1011d4c640eaf24403e3390a235eff983be69b39ed/plone.app.contentmenu-2.0.8.zip" } ], "2.0.9": [ { "comment_text": "", "digests": { "md5": "fc5744b72caa65068b9d9b54594bbc50", "sha256": "e36b148ba0645016062a8b4a91f61f6831c7eb7a03237adb8d38ad91aa633d69" }, "downloads": -1, "filename": "plone.app.contentmenu-2.0.9.zip", "has_sig": false, "md5_digest": "fc5744b72caa65068b9d9b54594bbc50", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36863, "upload_time": "2014-01-28T03:26:34", "url": "https://files.pythonhosted.org/packages/c0/10/f4b03e7240c91bdd78816c2230c30731a7c4071a8515b62e5a80facc6244/plone.app.contentmenu-2.0.9.zip" } ], "2.0a1": [ { "comment_text": "", "digests": { "md5": "7c0ce7132b3668dac77cc9f64d4c59e1", "sha256": "bfc733b7a15c8b2722c40b435abc9853fc3215a63746b4cb65caffa678fe8c6f" }, "downloads": -1, "filename": "plone.app.contentmenu-2.0a1.zip", "has_sig": false, "md5_digest": "7c0ce7132b3668dac77cc9f64d4c59e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30939, "upload_time": "2009-11-14T19:19:30", "url": "https://files.pythonhosted.org/packages/be/8a/fb05d89140c068a6147311d6eb83711dcd0a818a98732422a4b6d48f91c4/plone.app.contentmenu-2.0a1.zip" } ], "2.0a2": [ { "comment_text": "", "digests": { "md5": "27971345f25c8cb12fd6982216facf01", "sha256": "45848b59c2589938264a24bb92be881f324e6fd419778dad45d973e4b580b59d" }, "downloads": -1, "filename": "plone.app.contentmenu-2.0a2.zip", "has_sig": false, "md5_digest": "27971345f25c8cb12fd6982216facf01", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31734, "upload_time": "2009-12-27T17:11:15", "url": "https://files.pythonhosted.org/packages/ac/fc/6431461f53c68a4b3a36bae51e5918c90518a9d48c9c645a765876e8880c/plone.app.contentmenu-2.0a2.zip" } ], "2.0b1": [ { "comment_text": "", "digests": { "md5": "344ab06669094b69602c522f266b9b37", "sha256": "fdf45026727814d1f368c2b94f9ee7406ac5774c517762f9ada7b62713afd67f" }, "downloads": -1, "filename": "plone.app.contentmenu-2.0b1.zip", "has_sig": false, "md5_digest": "344ab06669094b69602c522f266b9b37", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32128, "upload_time": "2010-01-24T17:06:13", "url": "https://files.pythonhosted.org/packages/8e/37/14e1b887ffedee9d4a1c3a0f81fb749a1cdf4cc8f38ed196aa55399e93bf/plone.app.contentmenu-2.0b1.zip" } ], "2.0b2": [ { "comment_text": "", "digests": { "md5": "1f26201d61d0ab8942e97669a469c5c0", "sha256": "cb4888f1ea6c007210475dd85c8ce241aa92b8f9247210bb95e933b685228a2b" }, "downloads": -1, "filename": "plone.app.contentmenu-2.0b2.zip", "has_sig": false, "md5_digest": "1f26201d61d0ab8942e97669a469c5c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32029, "upload_time": "2010-02-17T18:55:51", "url": "https://files.pythonhosted.org/packages/05/5c/ae01f88f2f007ea5980a919cc5191278dcbeedbe40d95030a04b60ad1259/plone.app.contentmenu-2.0b2.zip" } ], "2.0b3": [ { "comment_text": "", "digests": { "md5": "b6a4487d4bf537539a99efc099326cdd", "sha256": "e792b981965557ec46a6aba958b820b10143e16c5e2db90df7f975e44ef04122" }, "downloads": -1, "filename": "plone.app.contentmenu-2.0b3.zip", "has_sig": false, "md5_digest": "b6a4487d4bf537539a99efc099326cdd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32665, "upload_time": "2010-06-13T12:28:45", "url": "https://files.pythonhosted.org/packages/60/3a/33e8bff1bcf3cfe87714529393996d614964a93eae5aca26641272b10ea3/plone.app.contentmenu-2.0b3.zip" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "9ff0c6b7758637a8fe387ec293b67d78", "sha256": "6a17612e672f2ae9a984f6ebabd8ef4eb0e328adf5152e3690affdef821a4a4e" }, "downloads": -1, "filename": "plone.app.contentmenu-2.1.0.zip", "has_sig": false, "md5_digest": "9ff0c6b7758637a8fe387ec293b67d78", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38500, "upload_time": "2014-02-27T01:24:59", "url": "https://files.pythonhosted.org/packages/e4/c3/17123abd5e3bfa40c0c4b334a9cce806a62a4936b7e011d8fd2b3f2fa060/plone.app.contentmenu-2.1.0.zip" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "64ddc76f5ced3e9d112e4df2bf3dfffb", "sha256": "cc7663196a97359cefcad837413ebd7147478448ef78e8a0134611957d52b735" }, "downloads": -1, "filename": "plone.app.contentmenu-2.1.1.zip", "has_sig": false, "md5_digest": "64ddc76f5ced3e9d112e4df2bf3dfffb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38845, "upload_time": "2014-04-14T00:11:20", "url": "https://files.pythonhosted.org/packages/a2/dc/4e84b1ef58ce1f26b326a319ae33b3158dec5171ea8c84a2f492b0ea6ce9/plone.app.contentmenu-2.1.1.zip" } ], "2.1.10": [ { "comment_text": "", "digests": { "md5": "93179eff5fccd2f8f45b48b9edbb39bc", "sha256": "1130e89559e39d64dfadffbcab665969d833c98f38b59d4684702f7c6b64dea8" }, "downloads": -1, "filename": "plone.app.contentmenu-2.1.10.tar.gz", "has_sig": false, "md5_digest": "93179eff5fccd2f8f45b48b9edbb39bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38056, "upload_time": "2016-11-10T19:50:30", "url": "https://files.pythonhosted.org/packages/39/84/0ea2643189f3bc47cafeb4084b0fd0862551369be5e6f6a982ed0da5d14f/plone.app.contentmenu-2.1.10.tar.gz" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "440eeabd691db35faa1114014750ddae", "sha256": "0381f39b5099d366ce3bf9e8bb15364fd51876da1e3f4324aa53f2825effc324" }, "downloads": -1, "filename": "plone.app.contentmenu-2.1.2.zip", "has_sig": false, "md5_digest": "440eeabd691db35faa1114014750ddae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39043, "upload_time": "2014-10-24T01:26:38", "url": "https://files.pythonhosted.org/packages/8a/fd/16f60511f4c45c38fd0b4a44c1f4335b2d72e82de7e650e203b41d844996/plone.app.contentmenu-2.1.2.zip" } ], "2.1.3": [ { "comment_text": "", "digests": { "md5": "fc5d1d6cbad0f6469222b99881506b8a", "sha256": "4f0e9140c4dc778e28d924de7cac2d5bbda9bcfc6dab853aeed7133a3e009496" }, "downloads": -1, "filename": "plone.app.contentmenu-2.1.3.tar.gz", "has_sig": false, "md5_digest": "fc5d1d6cbad0f6469222b99881506b8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31791, "upload_time": "2015-05-04T21:15:51", "url": "https://files.pythonhosted.org/packages/66/a0/5bb36e46c568a1c5764323da92b751133f56fc792562e3ce7cfc42e75e90/plone.app.contentmenu-2.1.3.tar.gz" }, { "comment_text": "", "digests": { "md5": "56c23de82f41bc71adfe31f738643818", "sha256": "969ec0717c4ab4694664159a2dce92c77512326f91040b8e8af4eb627c7be94e" }, "downloads": -1, "filename": "plone.app.contentmenu-2.1.3.zip", "has_sig": false, "md5_digest": "56c23de82f41bc71adfe31f738643818", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41290, "upload_time": "2015-03-11T13:05:36", "url": "https://files.pythonhosted.org/packages/e5/fb/a27cade0df67390a747038451a0a78778cf336b33eb0855f03d6f99d267e/plone.app.contentmenu-2.1.3.zip" } ], "2.1.4": [ { "comment_text": "", "digests": { "md5": "9a654e13a6a8bdf72f8e453f85094a72", "sha256": "776f06f0e036363253f184fd7d274ddce7ec40e2a6ce0bb706854e1eedf273ed" }, "downloads": -1, "filename": "plone.app.contentmenu-2.1.4.tar.gz", "has_sig": false, "md5_digest": "9a654e13a6a8bdf72f8e453f85094a72", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31901, "upload_time": "2015-05-04T22:58:46", "url": "https://files.pythonhosted.org/packages/9a/78/3744263754088036caed25cc201d7bb06a87f28ca1c6e5f3972eabaf402d/plone.app.contentmenu-2.1.4.tar.gz" } ], "2.1.5": [ { "comment_text": "", "digests": { "md5": "4f1bcdeddcc67eab7d9722d2f83e3c0f", "sha256": "e6edbf35379a843b7c1c8333cd1efe76b0c692434c0331c1618aba17ae406ee7" }, "downloads": -1, "filename": "plone.app.contentmenu-2.1.5.tar.gz", "has_sig": false, "md5_digest": "4f1bcdeddcc67eab7d9722d2f83e3c0f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31546, "upload_time": "2015-07-18T03:29:28", "url": "https://files.pythonhosted.org/packages/bb/17/be151b5db949ea47061f2d160c21faaea8474197fc5633543a4e8f09f8df/plone.app.contentmenu-2.1.5.tar.gz" } ], "2.1.6": [ { "comment_text": "", "digests": { "md5": "d5d6f52b416a71088ad60cbe4186a2e7", "sha256": "1e1b9919d1d254153dde2c4dcb1080baebc188161970aff66920200f5f04576f" }, "downloads": -1, "filename": "plone.app.contentmenu-2.1.6.tar.gz", "has_sig": false, "md5_digest": "d5d6f52b416a71088ad60cbe4186a2e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32068, "upload_time": "2015-08-20T11:04:04", "url": "https://files.pythonhosted.org/packages/0b/d3/eb04c43e0538c79547c173623e4d05f712e4c8bf4667ad348c7534ed3750/plone.app.contentmenu-2.1.6.tar.gz" } ], "2.1.7": [ { "comment_text": "", "digests": { "md5": "fd92b890c41558706cf8dc9a1328a9db", "sha256": "a92f009ff7d9ecf20f421d4266761a0cd24a277d470be2803e17effc04c0f6da" }, "downloads": -1, "filename": "plone.app.contentmenu-2.1.7.tar.gz", "has_sig": false, "md5_digest": "fd92b890c41558706cf8dc9a1328a9db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33210, "upload_time": "2016-02-19T18:36:45", "url": "https://files.pythonhosted.org/packages/ff/2a/35b6db2337b8141ffe83d4c9e6e223ad3bffb7feea19624e0fd69423b1c1/plone.app.contentmenu-2.1.7.tar.gz" } ], "2.1.8": [ { "comment_text": "", "digests": { "md5": "013bf4012955a8ec939ce342e2b60fd2", "sha256": "12dac2a717996bbeb045bfcbe8ff1e3d51fe3b03d3afe120cf7f32d55189f203" }, "downloads": -1, "filename": "plone.app.contentmenu-2.1.8.tar.gz", "has_sig": false, "md5_digest": "013bf4012955a8ec939ce342e2b60fd2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33705, "upload_time": "2016-05-26T19:39:45", "url": "https://files.pythonhosted.org/packages/1c/46/5ec4d973f29b056b8f0c143937dc5a5ddda3fc7680bed70cc0f2c4d0b77e/plone.app.contentmenu-2.1.8.tar.gz" } ], "2.1.9": [ { "comment_text": "", "digests": { "md5": "46c1e00c3624dfb6b2feb3fe322f8d86", "sha256": "9a944c78b28feae9c0cfa7dd38d17adf8ee64f1c4da403a4788988a2db39738c" }, "downloads": -1, "filename": "plone.app.contentmenu-2.1.9.tar.gz", "has_sig": false, "md5_digest": "46c1e00c3624dfb6b2feb3fe322f8d86", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37598, "upload_time": "2016-10-03T14:48:59", "url": "https://files.pythonhosted.org/packages/30/18/855336163447091877951d9adcade1b11ce26bc938f8b1314e1a465729df/plone.app.contentmenu-2.1.9.tar.gz" } ], "2.2": [ { "comment_text": "", "digests": { "md5": "3fe02c5313da276086f47cceba22feac", "sha256": "8376c70d86b79e565acf6f87a7f016502ab4cb4841cf3f336fc78b1820b507e1" }, "downloads": -1, "filename": "plone.app.contentmenu-2.2.tar.gz", "has_sig": false, "md5_digest": "3fe02c5313da276086f47cceba22feac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38634, "upload_time": "2016-11-01T22:48:13", "url": "https://files.pythonhosted.org/packages/82/77/8dadda3842e961f9432d2dc54da4558ef02a12b96683a651757121b11da4/plone.app.contentmenu-2.2.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "e3a7e03566bd3c2853438b860cf675da", "sha256": "b04b9a87754f0bc15986452d14c88ce1a1e8299ce659ac6e7c6a6fd4076420fd" }, "downloads": -1, "filename": "plone.app.contentmenu-2.2.1.tar.gz", "has_sig": false, "md5_digest": "e3a7e03566bd3c2853438b860cf675da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38797, "upload_time": "2016-11-10T19:53:18", "url": "https://files.pythonhosted.org/packages/71/e0/ac414fa03cc1c9b01dd4a6ea8a29506c35242fbf6139ec5d2565fa35a819/plone.app.contentmenu-2.2.1.tar.gz" } ], "2.2.2": [ { "comment_text": "", "digests": { "md5": "757bff09886c29b9ae68c3292656a8a2", "sha256": "c5b0adfaa3c17e417b54f9e58f9bc9c44e98367a1752f66a8d76d72add1817ad" }, "downloads": -1, "filename": "plone.app.contentmenu-2.2.2.tar.gz", "has_sig": false, "md5_digest": "757bff09886c29b9ae68c3292656a8a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38909, "upload_time": "2017-02-13T01:31:48", "url": "https://files.pythonhosted.org/packages/04/64/5f0889aae6bce03de0007f41ee42df5753a0cb11304e49008c5379c4a516/plone.app.contentmenu-2.2.2.tar.gz" } ], "2.2.3": [ { "comment_text": "", "digests": { "md5": "eaacfd4ba3aaa7864824717b68914428", "sha256": "cf41be80adec9ea5bf066cb41a7cae6c5967565d6a3f6718c2cfd638a399cfc4" }, "downloads": -1, "filename": "plone.app.contentmenu-2.2.3-py2-none-any.whl", "has_sig": false, "md5_digest": "eaacfd4ba3aaa7864824717b68914428", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 33268, "upload_time": "2018-02-04T23:44:51", "url": "https://files.pythonhosted.org/packages/af/73/a2f8f5ec2999c4eb30158fd6f31a53934d88800596a4eda3d2295072c59b/plone.app.contentmenu-2.2.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c6681cc6d3520e917b496f1c709a651a", "sha256": "3e4cc7254da64518503e5fbf4360bfc9c7f4489f3e18909accd2d55eb60c7c52" }, "downloads": -1, "filename": "plone.app.contentmenu-2.2.3.tar.gz", "has_sig": false, "md5_digest": "c6681cc6d3520e917b496f1c709a651a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32413, "upload_time": "2018-02-04T23:44:52", "url": "https://files.pythonhosted.org/packages/70/ff/1619adbb1f2c4bbf687f6b0d7eb9a4ccddcde519cd596f18ba4ae5f0dd96/plone.app.contentmenu-2.2.3.tar.gz" } ], "2.2.4": [ { "comment_text": "", "digests": { "md5": "ce87816efc2411520356beb830b03535", "sha256": "a852d11f54200c5d047e1c68f3c84784008ea79fa15c15437b02ee0f609f3fb0" }, "downloads": -1, "filename": "plone.app.contentmenu-2.2.4-py2-none-any.whl", "has_sig": false, "md5_digest": "ce87816efc2411520356beb830b03535", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 26936, "upload_time": "2018-09-23T16:00:02", "url": "https://files.pythonhosted.org/packages/fa/29/2c7add0c6cb39f19f58e6153cb471f181e0f904a07845b5126d4ad40c871/plone.app.contentmenu-2.2.4-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "818c693bf3b8a354560a536f4325d02a", "sha256": "0756dd502395eddc747b597aec8ddb12ada2c6ad5eb3682afc9b5a1ae6145bee" }, "downloads": -1, "filename": "plone.app.contentmenu-2.2.4.tar.gz", "has_sig": false, "md5_digest": "818c693bf3b8a354560a536f4325d02a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36696, "upload_time": "2018-09-23T16:00:04", "url": "https://files.pythonhosted.org/packages/c2/0e/97d822cc27d7ab6d95c17d6f070909a34303a492a2ccd4ccd9bd098223bc/plone.app.contentmenu-2.2.4.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "2a708612969ec0e47125a8000f257396", "sha256": "e4c2dcbf6e79a96d8f2f97465858544e1b8b1c27d4a3472112efe350c5b519ac" }, "downloads": -1, "filename": "plone.app.contentmenu-2.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2a708612969ec0e47125a8000f257396", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 27113, "upload_time": "2019-06-27T19:38:20", "url": "https://files.pythonhosted.org/packages/66/6d/2ce8c8d81608b19b479e342379501f750d0f8a2359c15071769812712b15/plone.app.contentmenu-2.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e873b58c1156019436fd2320af89eafa", "sha256": "69a005daf1636b18eb23311ab3da9eee01f44023791e7c0debc37b55c4d9760d" }, "downloads": -1, "filename": "plone.app.contentmenu-2.3.0.tar.gz", "has_sig": false, "md5_digest": "e873b58c1156019436fd2320af89eafa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37245, "upload_time": "2019-06-27T19:38:22", "url": "https://files.pythonhosted.org/packages/94/92/b708b36a7470445a92a8dac151f16f3042815bd74edd0adf8d6a3b853b3a/plone.app.contentmenu-2.3.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "2a708612969ec0e47125a8000f257396", "sha256": "e4c2dcbf6e79a96d8f2f97465858544e1b8b1c27d4a3472112efe350c5b519ac" }, "downloads": -1, "filename": "plone.app.contentmenu-2.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2a708612969ec0e47125a8000f257396", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 27113, "upload_time": "2019-06-27T19:38:20", "url": "https://files.pythonhosted.org/packages/66/6d/2ce8c8d81608b19b479e342379501f750d0f8a2359c15071769812712b15/plone.app.contentmenu-2.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e873b58c1156019436fd2320af89eafa", "sha256": "69a005daf1636b18eb23311ab3da9eee01f44023791e7c0debc37b55c4d9760d" }, "downloads": -1, "filename": "plone.app.contentmenu-2.3.0.tar.gz", "has_sig": false, "md5_digest": "e873b58c1156019436fd2320af89eafa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37245, "upload_time": "2019-06-27T19:38:22", "url": "https://files.pythonhosted.org/packages/94/92/b708b36a7470445a92a8dac151f16f3042815bd74edd0adf8d6a3b853b3a/plone.app.contentmenu-2.3.0.tar.gz" } ] }