{ "info": { "author": "Hanno Schlichting", "author_email": "plone-developers@lists.sourceforge.net", "bugtrack_url": null, "classifiers": [ "Framework :: Plone", "Framework :: Plone :: 5.0", "Framework :: Plone :: 5.1", "Framework :: Zope2", "License :: OSI Approved :: BSD License", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6" ], "description": "Introduction\n============\n\nstatusmessages provides an easy way of handling internationalized status\nmessages managed via an BrowserRequest adapter storing status messages in\nclient-side cookies.\n\nIt is quite common to write status messages which should be shown to the user\nafter some action. These messages of course should be internationalized. As\nthese messages normally are defined in Python code, the common way to i18n-ize\nthese in Zope is to use zope.i18n Messages. Messages are complex objects\nconsisting of a translation domain and a default unicode text and might have an\nadditional mapping dict and a distinct id.\n\nThe usual way to provide status messages in CMF/Plone has been to add a\n\"?portal_status_messages=some%20text\" to the URL. While this has some usability\nproblems it also isn't possible to i18n-ize these in the common way, as the URL\nis currently limited to the ASCII charset, but an encoding providing support for\nthe full unicode range is required.\n\nThe solution provided by this module is to store the status messages inside a\ncookie. In version 1.x a server side session like storage has been used, but\nthis turned out not to be caching friendly for the usual web caching strategies.\n\nChangelog\n=========\n\n5.0.4 (2018-09-23)\n------------------\n\nBug fixes:\n\n- Use Umlaut \u00e4 in tests in order to check string/bytes handling.\n Refactor test_encoding to unittest.\n [jensens]\n\n\n5.0.3 (2018-06-21)\n------------------\n\nBug fixes:\n\n- Python 3 compatibility fixes.\n [pbauer]\n\n\n5.0.2 (2018-02-05)\n------------------\n\nNew features:\n\n- Add Python 2 / 3 compatibility\n [davilima6]\n\n\n5.0.1 (2017-11-26)\n------------------\n\nBug fixes:\n\n- Fix issue where encoding and decoding of statusmessages into cookie\n raised exception, because of\n ``TypeError: Struct() argument 1 must be string, not unicode``\n [datakurre]\n\n\n5.0 (2017-08-04)\n----------------\n\nBreaking changes:\n\n- Remove python 2.6 (and thus Plone 4.3.x) compatibility.\n [tomgross]\n\nNew features:\n\n- Python 3 compatibility\n [tomgross]\n\nBug fixes:\n\n- Update code to follow Plone styleguide.\n [gforcada]\n\n\n4.1.2 (2017-02-12)\n------------------\n\nBug fixes:\n\n- Fix deprecated import in test.\n [pbauer]\n\n\n4.1.1 (2016-08-11)\n------------------\n\nBug fixes:\n\n- Use zope.interface decorator.\n [gforcada]\n\n\n4.1.0 (2016-05-25)\n------------------\n\nNew features:\n\n- Convert tests to plone.app.testing.\n [do3cc]\n\n\n4.0 - 2010-07-18\n----------------\n\n- Use the standard libraries doctest module.\n [hannosch]\n\n\n4.0b1 - 2010-03-01\n------------------\n\n- Stopped the cookie from being expired if a redirect (301, 302) or not-modified\n (304) response is sent. This means that if you set a redirect and then\n (superfluously) render a template that would show the status message, you\n won't lose the message.\n [optilude]\n\n\n4.0a2 - 2009-12-17\n------------------\n\n- Changed the default type of a new message from the empty string to info.\n [hannosch]\n\n\n4.0a1 - 2009-12-17\n------------------\n\n- Simplified the interface to use simpler add/show method names while keeping\n backwards compatibility.\n [hannosch]\n\n- More code simplification. Make the code itself independent of Zope2.\n [hannosch]\n\n- Removed a five:implements statement, as the ZPublisher.HTTPRequest is always\n an IBrowserRequest in Zope 2.12.\n [hannosch]\n\n- This version depends on Zope 2.12+.\n [hannosch]\n\n- Package metadata cleanup.\n [hannosch]\n\n- Declare package and test dependencies.\n [hannosch]\n\n\n3.0.3 - 2007-11-24\n------------------\n\n- Use binascii.b2a_base64 instead of base64.encodestring; the former doesn't\n inject newlines every 76 characters, which makes it easier to strip just the\n last one (slightly faster). This fixes tickets #7323 and #7325.\n [mj]\n\n\n3.0.2 - 2007-11-06\n------------------\n\n- Fixed encoding format for the cookie value. The former format imposed a\n serious security risk. The full security issue is tracked at:\n http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-5741. This also fixes\n http://dev.plone.org/plone/ticket/6943.\n [hannosch, witsch, mj]\n\n\n3.0.1 - 2007-10-07\n------------------\n\n- Added the IAttributeAnnotatable interface assignment for the request to this\n package as well as the inclusion of the zope.annotation, as we rely on it.\n [hannosch]\n\n\n3.0 - 2007-08-09\n----------------\n\n- No changes.\n [hannosch]\n\n\n3.0rc1 - 2007-07-10\n-------------------\n\n- Removed useless setup.cfg.\n [hannosch]\n\n\n3.0b2 - 2007-03-23\n------------------\n\n- Fixed duplicate message bug. Showing identical messages to the end user more\n than once, doesn't make any sense. This closes\n http://dev.plone.org/plone/ticket/6109.\n [hannosch]\n\n- Added 's support for statusmessages without a redirect. This uses annotations\n on the request instead of direct values, so we avoid the possibility of\n sneaking those in via query strings.\n [tomster, hannosch]\n\n\n3.0b1 - 2007-03-05\n------------------\n\n- Converted to a package in the Products namespace.\n [hannosch]\n\n- Added explicit translation of statusmessages before storing them in the\n cookie. This makes sure we have a reasonable context to base the\n translation on.\n [hannosch]\n\n- Changed license to BSD, to make it possible to include it as a dependency\n in Archetypes.\n [hannosch]\n\n\n2.1 - 2006-10-25\n----------------\n\n- Updated test infrastructure, removed custom testrunner.\n [hannosch]\n\n- Fixed deprecation warning for the zcml content directive.\n [hannosch]\n\n\n2.0 - 2006-05-15\n----------------\n\n- Total reimplementation using cookies instead of a server-side in-memory\n storage to store status messages. The reasoning behind this change is that\n the former approach didn't play well with web caching strategies and added an\n additional burden in ZEO environments (having to use load-balancers, which\n are able to identify users and keep them connected to the same ZEO server).\n [hannosch]\n\n\n1.1 - 2006-02-13\n----------------\n\n- Added tests for ThreadSafeDict.\n [hannosch]\n\n- Fixed serious memory leak and did some code improvements.\n [hannosch, alecm]\n\n\n1.0 - 2006-01-26\n----------------\n\n- Initial implementation\n [hannosch]\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.python.org/pypi/Products.statusmessages", "keywords": "Zope CMF Plone status messages i18n", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "Products.statusmessages", "package_url": "https://pypi.org/project/Products.statusmessages/", "platform": "", "project_url": "https://pypi.org/project/Products.statusmessages/", "project_urls": { "Homepage": "https://pypi.python.org/pypi/Products.statusmessages" }, "release_url": "https://pypi.org/project/Products.statusmessages/5.0.4/", "requires_dist": [ "setuptools", "six", "zope.annotation", "zope.i18n", "zope.interface", "zope.component; extra == 'test'", "Zope2; extra == 'test'" ], "requires_python": "", "summary": "statusmessages provides an easy way of handling internationalized status messages managed via an BrowserRequest adapter storing status messages in client-side cookies.", "version": "5.0.4" }, "last_serial": 4302192, "releases": { "3.0": [ { "comment_text": "", "digests": { "md5": "01c0f087e19ceed7ed08ae65281a3f63", "sha256": "18b11099c58772cd56d3fa6d25c5f1fbc1925185e2b0beffc4355e825938f440" }, "downloads": -1, "filename": "Products.statusmessages-3.0-py2.4.egg", "has_sig": true, "md5_digest": "01c0f087e19ceed7ed08ae65281a3f63", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 15015, "upload_time": "2007-08-09T18:00:23", "url": "https://files.pythonhosted.org/packages/56/99/39ebef987d2dce7c47bf1dd377a4fbd10eee9477f66b45521284f90bf272/Products.statusmessages-3.0-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "7dbc845f25b28df0eaf87d95e51ee9fb", "sha256": "319baeeec61a59151ef5628ad156c38747774ff7505846da8ab5e1831ee928e6" }, "downloads": -1, "filename": "Products.statusmessages-3.0.tar.gz", "has_sig": true, "md5_digest": "7dbc845f25b28df0eaf87d95e51ee9fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7052, "upload_time": "2007-08-09T18:00:17", "url": "https://files.pythonhosted.org/packages/b3/31/1de3e914182ed3c575af7ffbafc97865e9979f1f8619275085490ac8df7c/Products.statusmessages-3.0.tar.gz" } ], "3.0.1": [ { "comment_text": "", "digests": { "md5": "4dd004e5686f1af678f78b350cdb9087", "sha256": "bf08aa5a138740fc38231897e5854a6882db95994328d56ba5485fd8147c7d43" }, "downloads": -1, "filename": "Products.statusmessages-3.0.1-py2.4.egg", "has_sig": true, "md5_digest": "4dd004e5686f1af678f78b350cdb9087", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 14770, "upload_time": "2007-10-07T12:04:07", "url": "https://files.pythonhosted.org/packages/f5/c5/a78018305d08a41cfab8c5762efe7d25a48fffca8793768cdd6da509305a/Products.statusmessages-3.0.1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "de7c17e6c4e53313ae6506939c6595b2", "sha256": "7a5d6227cc295ad9eb95caee7b0ca6680a9e65f064fc627681cecec49adf3ac2" }, "downloads": -1, "filename": "Products.statusmessages-3.0.1.tar.gz", "has_sig": true, "md5_digest": "de7c17e6c4e53313ae6506939c6595b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7099, "upload_time": "2007-10-07T12:04:00", "url": "https://files.pythonhosted.org/packages/f7/47/1fc6d38ae3b0be2856fb3fdd8f89b77ef2e32f2cc2a5f71de6f37e4af981/Products.statusmessages-3.0.1.tar.gz" } ], "3.0.2": [ { "comment_text": "", "digests": { "md5": "afd37c83065c7eae1df7a51411e59b28", "sha256": "5fae99e00ff3c25ef220564993afbde5858e2f3dd0dce14df6fa192e83e31b2b" }, "downloads": -1, "filename": "Products.statusmessages-3.0.2-py2.4.egg", "has_sig": true, "md5_digest": "afd37c83065c7eae1df7a51411e59b28", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 17547, "upload_time": "2007-11-06T09:44:59", "url": "https://files.pythonhosted.org/packages/35/96/b4eb052172180d636fd42df15849491a8c556eca008ff69ae85dd6c7c1f8/Products.statusmessages-3.0.2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "5f1975dc32189c0ffe3a660cc25aa519", "sha256": "a27da7b7bd43b2e16e635e83f409781bf56c047805bc483a1bbfc96f061ec7fc" }, "downloads": -1, "filename": "Products.statusmessages-3.0.2.tar.gz", "has_sig": true, "md5_digest": "5f1975dc32189c0ffe3a660cc25aa519", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8279, "upload_time": "2007-11-06T09:44:50", "url": "https://files.pythonhosted.org/packages/26/12/fecd924045163f478f29a1dc904d0be5443d6ffb0e1b06973aa37682f8ba/Products.statusmessages-3.0.2.tar.gz" } ], "3.0.3": [ { "comment_text": "", "digests": { "md5": "d9d7662bbf4ff80b1f87ad7785c2412f", "sha256": "3744f513af456ed4c462f3bddbed7072096022a3a3ab7413c58acf566df683b8" }, "downloads": -1, "filename": "Products.statusmessages-3.0.3-py2.4.egg", "has_sig": true, "md5_digest": "d9d7662bbf4ff80b1f87ad7785c2412f", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 17954, "upload_time": "2007-11-24T18:16:36", "url": "https://files.pythonhosted.org/packages/9d/9f/59469f2f5adb95623a70c20143d3e8a377861ce681e3b557fad5a19ec556/Products.statusmessages-3.0.3-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "72f0681468b74dad64896eaae6dc7857", "sha256": "298bd0180edb2d56e01ad8e30651446d699db7f912a35e20f8e20d7b86418b54" }, "downloads": -1, "filename": "Products.statusmessages-3.0.3.tar.gz", "has_sig": true, "md5_digest": "72f0681468b74dad64896eaae6dc7857", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8473, "upload_time": "2007-11-24T18:16:27", "url": "https://files.pythonhosted.org/packages/57/89/0405c8d73a879ca46d964e4d40f0c113e0ef105cc9b538536323166ec574/Products.statusmessages-3.0.3.tar.gz" } ], "3.0b1": [ { "comment_text": "", "digests": { "md5": "eaa45ddb37c470087d2be22df2a864a9", "sha256": "f6c558413326469569987de91ac4b29f77b2af657904c2d4371ec4c66777d473" }, "downloads": -1, "filename": "Products.statusmessages-3.0b1-py2.4.egg", "has_sig": true, "md5_digest": "eaa45ddb37c470087d2be22df2a864a9", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 13246, "upload_time": "2007-03-05T22:12:42", "url": "https://files.pythonhosted.org/packages/75/57/c8e1035f6124f644b34fe55682a63bb6ef711f9238b8ab017cded5cb6a69/Products.statusmessages-3.0b1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "e453842cc934e48509ac1de482caf08b", "sha256": "3d855d7503e3cdb2f05c6251123e60d983d18790e73c016e1a9eef5d162b5f1f" }, "downloads": -1, "filename": "Products.statusmessages-3.0b1.tar.gz", "has_sig": true, "md5_digest": "e453842cc934e48509ac1de482caf08b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7502, "upload_time": "2007-03-05T22:12:36", "url": "https://files.pythonhosted.org/packages/a9/8d/d148e453e15ae9965dbc397423eb33ed1b44ad1ca194eb3f365902b3bd01/Products.statusmessages-3.0b1.tar.gz" } ], "3.0b2": [ { "comment_text": "", "digests": { "md5": "c3bba02771b89918d6458875177615d4", "sha256": "dd4fb21c687e4a20350196cf790d257d530f27240dd29d858c432e55f897f74b" }, "downloads": -1, "filename": "Products.statusmessages-3.0b2-py2.4.egg", "has_sig": true, "md5_digest": "c3bba02771b89918d6458875177615d4", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 13955, "upload_time": "2007-03-23T01:10:22", "url": "https://files.pythonhosted.org/packages/40/4d/a1ad18803ea81de2e641722c9802f2cc4de4a8f6e157a01b20d286db5ebb/Products.statusmessages-3.0b2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "c808556022ffed5879d9f8dda4fda91c", "sha256": "7bb0102d5ebbdd4705eb3b119374ed98fe4516272d491cca947ee51171890b3c" }, "downloads": -1, "filename": "Products.statusmessages-3.0b2.tar.gz", "has_sig": true, "md5_digest": "c808556022ffed5879d9f8dda4fda91c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7901, "upload_time": "2007-03-23T01:10:16", "url": "https://files.pythonhosted.org/packages/a5/d6/a2e5f6d180b471dc73d14eb97ab74a724dfa5d055fbbf9712ccfb2681988/Products.statusmessages-3.0b2.tar.gz" } ], "3.0rc1": [ { "comment_text": "", "digests": { "md5": "100a9e43383c45bb6458a69d17743851", "sha256": "4865bc85cd65b68e4832cbd15ad7278399c9b9c885d5e608df872dee2b35adff" }, "downloads": -1, "filename": "Products.statusmessages-3.0rc1-py2.4.egg", "has_sig": true, "md5_digest": "100a9e43383c45bb6458a69d17743851", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 13967, "upload_time": "2007-07-10T17:37:05", "url": "https://files.pythonhosted.org/packages/53/76/eb7a8083e06468d9260e5bb6f39c0cf4c84ff49882c81c3ec0cf3eb0dfe8/Products.statusmessages-3.0rc1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "b3fdb8bc73beef02b0df7fcbbaa5983a", "sha256": "dc5300f9d4e0e3d3471779225e9579f8e2701d0fba85d14a1e3450b43103c7a2" }, "downloads": -1, "filename": "Products.statusmessages-3.0rc1.tar.gz", "has_sig": true, "md5_digest": "b3fdb8bc73beef02b0df7fcbbaa5983a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7093, "upload_time": "2007-07-10T17:36:57", "url": "https://files.pythonhosted.org/packages/d9/c3/d15d8a3b6dc9a0100e926271cf1c96467fa1fabc359f1440cd2838cfe386/Products.statusmessages-3.0rc1.tar.gz" } ], "4.0": [ { "comment_text": "", "digests": { "md5": "265324b0a58a032dd0ed038103ed0473", "sha256": "2173737931be035586806e398e0a2a76641a7bf1b2da0394a7734ccb3354b983" }, "downloads": -1, "filename": "Products.statusmessages-4.0.zip", "has_sig": false, "md5_digest": "265324b0a58a032dd0ed038103ed0473", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18926, "upload_time": "2010-07-18T13:42:09", "url": "https://files.pythonhosted.org/packages/66/4f/38b3388dc4b2eac1f590e8659706450f6e3a2a6eff65212c0d80f3f390ea/Products.statusmessages-4.0.zip" } ], "4.0a1": [ { "comment_text": "", "digests": { "md5": "82ef3495613d629e88cd062d5f72cd1d", "sha256": "54c891e70943a213ed56595336918e39ca6e72c9b4ab3218bd06561c40c1f009" }, "downloads": -1, "filename": "Products.statusmessages-4.0a1.zip", "has_sig": false, "md5_digest": "82ef3495613d629e88cd062d5f72cd1d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17985, "upload_time": "2009-12-17T15:36:37", "url": "https://files.pythonhosted.org/packages/d9/67/e0656dfdb7c2534d0c31be93feb0f8d69d1a519da2e883e0b784cbef46f0/Products.statusmessages-4.0a1.zip" } ], "4.0a2": [ { "comment_text": "", "digests": { "md5": "7e5f0824bf3fa8bd2cab363456a216d0", "sha256": "4a51b812eb4807a2c03cd8501fa96679f61a438ea9f8eb093eb3a6baab065057" }, "downloads": -1, "filename": "Products.statusmessages-4.0a2.zip", "has_sig": false, "md5_digest": "7e5f0824bf3fa8bd2cab363456a216d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18110, "upload_time": "2009-12-17T16:55:53", "url": "https://files.pythonhosted.org/packages/3f/1c/c7fb6ddecd3a69d03214038ce796c5ecb4a9f3e0c035b89bb9b50d543408/Products.statusmessages-4.0a2.zip" } ], "4.0b1": [ { "comment_text": "", "digests": { "md5": "d1a1b11e147d1caea2f631afa613c345", "sha256": "94a0c3e89110e328d2717d64df7046a61ff31e045812389626789d3ac917ada7" }, "downloads": -1, "filename": "Products.statusmessages-4.0b1.zip", "has_sig": false, "md5_digest": "d1a1b11e147d1caea2f631afa613c345", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18970, "upload_time": "2010-03-01T18:41:32", "url": "https://files.pythonhosted.org/packages/c0/7e/fbedbd86ac428f3b7e1689653f4bb933313be930ab2d67408cb47cb03427/Products.statusmessages-4.0b1.zip" } ], "4.1.0": [ { "comment_text": "", "digests": { "md5": "3d1eb315a2974336efb313395ef0bab1", "sha256": "6e57c2e5740edb964890ee0a2c3a3a548d0a0c13ef164fb1fe0fea27b65be0b9" }, "downloads": -1, "filename": "Products.statusmessages-4.1.0.tar.gz", "has_sig": false, "md5_digest": "3d1eb315a2974336efb313395ef0bab1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11770, "upload_time": "2016-05-25T19:59:32", "url": "https://files.pythonhosted.org/packages/f7/9d/19bdcf7bc1805660173c27b5cd3db70c0957b017f0fb080cb44ee1980122/Products.statusmessages-4.1.0.tar.gz" } ], "4.1.1": [ { "comment_text": "", "digests": { "md5": "863ac6e06044c6562286ebbc9e4168a0", "sha256": "5c2de452229705f52b754e55c45da096b170345a3f3d0db6e6b25385b4fc59fa" }, "downloads": -1, "filename": "Products.statusmessages-4.1.1.tar.gz", "has_sig": false, "md5_digest": "863ac6e06044c6562286ebbc9e4168a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11875, "upload_time": "2016-08-11T18:39:29", "url": "https://files.pythonhosted.org/packages/05/71/965364079250541945f0b8fb5a752e062c2b850e5e5dff711a0447c53137/Products.statusmessages-4.1.1.tar.gz" } ], "4.1.2": [ { "comment_text": "", "digests": { "md5": "5964d805e09af55dc9bcc9f4205d6ef8", "sha256": "76504eeba020cfce8ea87bc26d55d8f301288045581e8337d906c0c542f2ae42" }, "downloads": -1, "filename": "Products.statusmessages-4.1.2.tar.gz", "has_sig": false, "md5_digest": "5964d805e09af55dc9bcc9f4205d6ef8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11964, "upload_time": "2017-02-13T01:39:19", "url": "https://files.pythonhosted.org/packages/a8/b4/9981b63c61963189a07b811d8cbfc55fe489d3fae08b23ade5197d36c50f/Products.statusmessages-4.1.2.tar.gz" } ], "5.0": [ { "comment_text": "", "digests": { "md5": "d2b462fc6036930117f1dd9e72955782", "sha256": "e52abc65c412940d74371aedd0c92dba2d2a5a75da53eea9744d3a9319ea7291" }, "downloads": -1, "filename": "Products.statusmessages-5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d2b462fc6036930117f1dd9e72955782", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14645, "upload_time": "2017-08-04T18:36:02", "url": "https://files.pythonhosted.org/packages/4c/88/ddb051cc6d648e9daa57c4ca81067f2947e63646034ccabc8fcb46342cf3/Products.statusmessages-5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d9563c98eaa4ab7e1e57667fa85f6d3d", "sha256": "2facae0d8c3bf34b9152a3b647e2c9457718486eafca0a41c9562bc7057f699c" }, "downloads": -1, "filename": "Products.statusmessages-5.0.tar.gz", "has_sig": false, "md5_digest": "d9563c98eaa4ab7e1e57667fa85f6d3d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12432, "upload_time": "2017-08-04T18:36:04", "url": "https://files.pythonhosted.org/packages/0b/c2/a64e9d10f6a59fb4ccf31a33f1df8748b4ede8aa249af84f935a1e5e3a01/Products.statusmessages-5.0.tar.gz" } ], "5.0.1": [ { "comment_text": "", "digests": { "md5": "ab77ec8cc2153544995a1c14da56a191", "sha256": "2edf079804a72a6348cc907a2cb379b9634c03e414791ffd36d3d6999c1f204c" }, "downloads": -1, "filename": "Products.statusmessages-5.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ab77ec8cc2153544995a1c14da56a191", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14885, "upload_time": "2017-11-26T16:32:38", "url": "https://files.pythonhosted.org/packages/04/46/7371a54aab166456cfc1a2cc9de7e122e70076583a99f11234c8ea4176af/Products.statusmessages-5.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dda40e1bd755f9933edd756f7957d156", "sha256": "61d2bbb3e20a15519bcc4dc847c9d39d09c49c30e69e7b085a5f3e133f3ef84a" }, "downloads": -1, "filename": "Products.statusmessages-5.0.1.tar.gz", "has_sig": false, "md5_digest": "dda40e1bd755f9933edd756f7957d156", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12533, "upload_time": "2017-11-26T16:32:42", "url": "https://files.pythonhosted.org/packages/50/99/ba40edce57f44f1437ea4500e65bb2485b69819e48cd5883090ee8494c9e/Products.statusmessages-5.0.1.tar.gz" } ], "5.0.2": [ { "comment_text": "", "digests": { "md5": "6cdaa4f57e2a116b5afcebf655a2a0b1", "sha256": "b46f7e9ce45c19282185683e5099e6207b69825e48c291daffc2c0f7821e9c6d" }, "downloads": -1, "filename": "Products.statusmessages-5.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6cdaa4f57e2a116b5afcebf655a2a0b1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15006, "upload_time": "2018-02-04T23:52:26", "url": "https://files.pythonhosted.org/packages/b2/f9/7933eb60aeec1da0b574711365b73e6a170f34d7c23f5556c0453e9cc95a/Products.statusmessages-5.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "70d8f65602981e5b596b526e5e07ce1c", "sha256": "5798a6c773d68152611d620f6851e6bff4949cccca4f0075150c65133fe8e234" }, "downloads": -1, "filename": "Products.statusmessages-5.0.2.tar.gz", "has_sig": false, "md5_digest": "70d8f65602981e5b596b526e5e07ce1c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10956, "upload_time": "2018-02-04T23:52:28", "url": "https://files.pythonhosted.org/packages/ff/3c/02efab34fb7952246309dbb8ad9e2389611b0b630ff9a3941d13ede27fe9/Products.statusmessages-5.0.2.tar.gz" } ], "5.0.3": [ { "comment_text": "", "digests": { "md5": "cec7a8991f4d3828c7c8ee876549506c", "sha256": "8d105f6306eef78d85d837ffb511892550da92ae59330bb540ec4eae42884adc" }, "downloads": -1, "filename": "Products.statusmessages-5.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cec7a8991f4d3828c7c8ee876549506c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11528, "upload_time": "2018-06-21T16:14:33", "url": "https://files.pythonhosted.org/packages/bd/38/2c1d46bb6ded567ffb614929fc8080f2027c377593977fe02b775f2172e1/Products.statusmessages-5.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5753950eb13058ff7567e8a3fdef3273", "sha256": "ed5edd8fdd2518302019bd412c24582acf332da8893d4173e6b82c08cbd289c6" }, "downloads": -1, "filename": "Products.statusmessages-5.0.3.tar.gz", "has_sig": false, "md5_digest": "5753950eb13058ff7567e8a3fdef3273", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12927, "upload_time": "2018-06-21T16:14:35", "url": "https://files.pythonhosted.org/packages/00/fc/f6f6318fdec7968ed6abf50fd86495dc025048d6c324373621946383a987/Products.statusmessages-5.0.3.tar.gz" } ], "5.0.4": [ { "comment_text": "", "digests": { "md5": "16db6caa00e3fb9e1bf7228494064412", "sha256": "c668dcbb8d5c4fe201d896333e9d78ac0a805cbd119f16810e506ef9c01cdf98" }, "downloads": -1, "filename": "Products.statusmessages-5.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "16db6caa00e3fb9e1bf7228494064412", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11712, "upload_time": "2018-09-23T15:56:02", "url": "https://files.pythonhosted.org/packages/2b/ba/1b13fcd0c5b015bc6e592c34cf697241479a737927f918618fc76acdfa81/Products.statusmessages-5.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "23b1af587615e0ee751d20b9fa8eccee", "sha256": "a172a1226804bf3a33a833852628c2d3e38000049ea12b6e65a9cc20f28d29f0" }, "downloads": -1, "filename": "Products.statusmessages-5.0.4.tar.gz", "has_sig": false, "md5_digest": "23b1af587615e0ee751d20b9fa8eccee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13196, "upload_time": "2018-09-23T15:56:04", "url": "https://files.pythonhosted.org/packages/e0/f5/8e2b812fdb0f6e44972078569269b95568bd433cb6702e57ad4635ca9c1d/Products.statusmessages-5.0.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "16db6caa00e3fb9e1bf7228494064412", "sha256": "c668dcbb8d5c4fe201d896333e9d78ac0a805cbd119f16810e506ef9c01cdf98" }, "downloads": -1, "filename": "Products.statusmessages-5.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "16db6caa00e3fb9e1bf7228494064412", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11712, "upload_time": "2018-09-23T15:56:02", "url": "https://files.pythonhosted.org/packages/2b/ba/1b13fcd0c5b015bc6e592c34cf697241479a737927f918618fc76acdfa81/Products.statusmessages-5.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "23b1af587615e0ee751d20b9fa8eccee", "sha256": "a172a1226804bf3a33a833852628c2d3e38000049ea12b6e65a9cc20f28d29f0" }, "downloads": -1, "filename": "Products.statusmessages-5.0.4.tar.gz", "has_sig": false, "md5_digest": "23b1af587615e0ee751d20b9fa8eccee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13196, "upload_time": "2018-09-23T15:56:04", "url": "https://files.pythonhosted.org/packages/e0/f5/8e2b812fdb0f6e44972078569269b95568bd433cb6702e57ad4635ca9c1d/Products.statusmessages-5.0.4.tar.gz" } ] }