' in redirectView.render()\n True\n\nThe same thing should work for AddForms:\n\n >>> class RedirectingAddView(PersonAddForm):\n ... def update(self):\n ... super(RedirectingAddView, self).update()\n ... self.request.response.redirect('.')\n >>> redirectView = RedirectingAddView(person, divRequest)\n >>> redirectView() == ''\n True\n\nNo required fields\n------------------\n\nIf there no required fields in the form, standard templates won't render\nthe \"required-info\" hint.\n\n >>> class IAdditionalInfo(zope.interface.Interface):\n ...\n ... location = zope.schema.TextLine(title=u'Location', required=False)\n ... about = zope.schema.Text(title=u'About', required=False)\n\n >>> class AdditionalInfoForm(form.AddForm):\n ...\n ... fields = field.Fields(IAdditionalInfo)\n\n >>> additionalInfoForm = AdditionalInfoForm(root, divRequest)\n >>> additionalInfoForm.update()\n >>> '
' in additionalInfoForm.render()\n False\n\n >>> additionalInfoForm = AdditionalInfoForm(root, tableRequest)\n >>> additionalInfoForm.update()\n >>> '
' in additionalInfoForm.render()\n False\n\nCleanup\n-------\n\n >>> import shutil\n >>> shutil.rmtree(temp_dir)\n\n\n=======\nCHANGES\n=======\n\n3.1 (2018-11-15)\n----------------\n\n- Added support for Python 3.4, 3.5, 3.6, 3.7.\n\n- Dropped support for Python 2.6 and 3.3.\n\n\n3.0.0 (2015-11-09)\n------------------\n\n- Standardize namespace __init__\n\n- Split config, mostly to be able to include in pyramid without browser\n resources and viewlets\n\n\n3.0.0a2 (2013-02-26)\n--------------------\n\n- Added missing version Trove classifiers.\n\n\n3.0.0a1 (2013-02-25)\n--------------------\n\n- Added support for Python 3.3.\n\n- Dropped support for Python 2.4 and 2.5.\n\n\n2.3.0 (2012-03-15)\n------------------\n\n- Feature: Mark a widget row with the \"required\" class when the widget is\n required. Similarly, when the widget has an error attached, add the \"error\"\n class to the widget row. That allows you to change the styles of the label\n and the widget if it is reuqired.\n\n\n2.2.1 (2012-01-09)\n------------------\n\n- No longer using deprecated ``zope.testing.doctest`` but built-in\n ``doctest`` instead.\n\n- Fixed tests so they do not break for `z3c.form` 2.5.0.\n\n\n2.2.0 (2009-12-28)\n------------------\n\n- Fixed tests so they do not break for `z3c.form` 2.2.0.\n\n- Using ``requiredInfo`` property (introduced in `z3c.form` 2.0.0) to\n render the information about required fields. This property returns\n an i18n message id making the information translateable.\n\n- Added support for groups containing groups: They get displayed now.\n\n2.1.0 (2009-09-01)\n------------------\n\n- Feature: Don't show required info hint if there's no required fields.\n\n- Bug: Don't render add forms when redirecting as well.\n\n- Bug: Fix redirection tests with newer zope.publisher that restricts\n untrusted redirects to different domains.\n\n2.0.0 (2009-06-14)\n------------------\n\n- Feature: Added support for context-specific template lookup, introduced in\n `z3c.template` 1.2.0 - templates can now be registered using (view, request,\n context) discriminator.\n\n- Feature: Added support for `z3c.pt` templates using `z3c.ptcompat`\n compatibility package.\n\n- Feature: Added layout support for `IAdding` component based add forms.\n\n- Feature: Added CSS for multi-widget which was added in `z3c.form` 2.0.0.\n\n- Bug: Changed usage of ``template/macros/*`` to ``macro:*``, because the\n first one doesn't work when we override a form template and use the form\n macro, registered with this package.\n\n- Bug: Don't do rendering in form's `__call__` method when request is a\n redirection.\n\n- Bug: Reformatted long-description to render properly on pypi.\n\n\n1.4.2 (2008-08-26)\n------------------\n\n- Bug: Corrected typos and unwanted unicode characters.\n\n\n1.4.1 (2008-01-23)\n------------------\n\n- Bug: Fixed up meta-data and the release.\n\n\n1.4.0 (2008-01-21)\n------------------\n\n- Feature: Added subform content and layout template. This allows you to\n configure real sub forms which do not render the form tag.\n\n- Feature: Improve layout implementation, support built-in layout templates.\n\n- Feature: Use ``IContentTemplate`` instead of ``IPageTemplate`` in layout\n base classes. This will help to prevent running into recursion errors if\n there is a missing layout template.\n\n- Feature: Added form module which offers built-in layout support.\n\n- Bug: Added missing display ``IContentTemplate``, otherwise we can run into a\n recursion in some cases.\n\n- Bug: Renamed table macro argument from ``form-required-info`` to\n ``required-info``. The macro ``form-required-info`` did not exist.\n\n- Bug: Added unit tests for layout support.\n\n- Bug: Added tests for layout macros.\n\n- Bug: Added tests for layout templates.\n\n\n1.3.0 (2007-08-24)\n------------------\n\n- Refactoring: Update CSS classes to reflect latest changes to the widget\n classes in ``z3c.form``.\n\n- Bug: Error view snippets may have a empty ``widget`` attribute values, so we\n cannot rely on accessing the label of the widget. This is the case, if the\n error view sniipet was created from an invariants validation error.\n\n- Bug: The table-form template did not properly render the error at the\n widget, because the ``render()`` method was not called. Thanks to Markus\n Leist for the report.\n\n\n1.2.0 (2007-07-18)\n------------------\n\n- Feature: The row div element now also has an id of the form\n \"-row\".\n\n\n1.1.1 (2007-07-04)\n------------------\n\n- Refactoring: Split up registrations for simpler management of UI\n components. This also makes it easier to see for developers how to create a\n new template for forms.\n\n\n1.1.0 (2007-06-29)\n------------------\n\n- Feature: Registered all defined macros for each form template. Also, added\n more slots to the templates providing more hooks for customization.\n\n- Feature: Added a macro/slot for the \"required info\", which explains how\n required fields are marked.\n\n- Feature: Added support for form labels.\n\n- Feature: Added support for groups to templates.\n\n\n1.0.1 (2007-06-22)\n------------------\n\n- Bug: Make sure we use the id for the \"for\" attribute of the \"label\"\n element and not the name. This has worked until recently, because the\n name and id were the same, but they are different now.\n\n\n1.0.0 (2007-05-24)\n------------------\n\n- Initial Release\n\n\n",
"description_content_type": "",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/zopefoundation/z3c.formui",
"keywords": "zope3 form widget",
"license": "ZPL 2.1",
"maintainer": "",
"maintainer_email": "",
"name": "z3c.formui",
"package_url": "https://pypi.org/project/z3c.formui/",
"platform": "",
"project_url": "https://pypi.org/project/z3c.formui/",
"project_urls": {
"Homepage": "https://github.com/zopefoundation/z3c.formui"
},
"release_url": "https://pypi.org/project/z3c.formui/3.1/",
"requires_dist": [
"setuptools",
"z3c.form (>=2.2.0)",
"z3c.macro",
"z3c.template",
"zope.component",
"zope.publisher",
"zope.viewlet",
"z3c.form[test]; extra == 'test'"
],
"requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
"summary": "A set of initial UI components for z3c.form.",
"version": "3.1"
},
"last_serial": 4491037,
"releases": {
"1.0.0": [
{
"comment_text": "",
"digests": {
"md5": "c25efc7e232e2744d17b63dd10c7e987",
"sha256": "1dc6d854535655fdd081a3fead11fcf423ac4b12d76eb9e4a809b11695433e38"
},
"downloads": -1,
"filename": "z3c.formui-1.0.0-py2.4.egg",
"has_sig": false,
"md5_digest": "c25efc7e232e2744d17b63dd10c7e987",
"packagetype": "bdist_egg",
"python_version": "2.4",
"requires_python": null,
"size": 10822,
"upload_time": "2007-05-24T15:22:14",
"url": "https://files.pythonhosted.org/packages/9c/26/9758e4432ef1e953a8125ddfdc23e430096b77f51d96c4a414c4d1a12838/z3c.formui-1.0.0-py2.4.egg"
},
{
"comment_text": "",
"digests": {
"md5": "242409af3e71e7776c09c27d11156139",
"sha256": "4c15bc015ad330821fd6c73740743c4b58e5ffabca820b1a5333b843f58215e5"
},
"downloads": -1,
"filename": "z3c.formui-1.0.0.tar.gz",
"has_sig": false,
"md5_digest": "242409af3e71e7776c09c27d11156139",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 6828,
"upload_time": "2007-05-24T15:22:06",
"url": "https://files.pythonhosted.org/packages/61/48/0997bba9d40848345548d81893dc2ccb083c944c21d8dccc53c9108ea594/z3c.formui-1.0.0.tar.gz"
}
],
"1.0.0c2": [
{
"comment_text": "",
"digests": {
"md5": "b9d5fa6fb2266fd4e088f5fff9fcf90f",
"sha256": "161d13eacb5d5645c904e316faeab7e1805bbf5e24cc1b8e19a8aa86d6849be6"
},
"downloads": -1,
"filename": "z3c.formui-1.0.0c2-py2.4.egg",
"has_sig": false,
"md5_digest": "b9d5fa6fb2266fd4e088f5fff9fcf90f",
"packagetype": "bdist_egg",
"python_version": "2.4",
"requires_python": null,
"size": 10796,
"upload_time": "2007-05-22T17:47:34",
"url": "https://files.pythonhosted.org/packages/94/d3/bf03266e4bf39ac25b8c27b22efb5a62bd215a12d39afaf6dee59eaf3d48/z3c.formui-1.0.0c2-py2.4.egg"
},
{
"comment_text": "",
"digests": {
"md5": "5c8fc7f7ba75c7af460902f1c9a4d70c",
"sha256": "ff7c77e5d5e4fe8c2d1e5f0100eadb7772eab64db8af5f92d01f46da8b4be8cc"
},
"downloads": -1,
"filename": "z3c.formui-1.0.0c2.tar.gz",
"has_sig": false,
"md5_digest": "5c8fc7f7ba75c7af460902f1c9a4d70c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5704,
"upload_time": "2007-05-22T17:47:25",
"url": "https://files.pythonhosted.org/packages/9a/17/8c4f93b82eec35f0516fdd6decb3aff3318053e39421f90971a5c8e90d93/z3c.formui-1.0.0c2.tar.gz"
}
],
"1.0.1": [
{
"comment_text": "",
"digests": {
"md5": "4030aaa91f68e90dbfbb07e683898432",
"sha256": "4fff973d64ab69f70d3c8cc4d80c89a54546b0cb40b69cff78fbdeed48d37da4"
},
"downloads": -1,
"filename": "z3c.formui-1.0.1-py2.4.egg",
"has_sig": false,
"md5_digest": "4030aaa91f68e90dbfbb07e683898432",
"packagetype": "bdist_egg",
"python_version": "2.4",
"requires_python": null,
"size": 11139,
"upload_time": "2007-06-22T17:20:19",
"url": "https://files.pythonhosted.org/packages/26/67/46cb68b085611158904282962d35b2620b91cd4f5a5a2b5b2ac7496e2a74/z3c.formui-1.0.1-py2.4.egg"
},
{
"comment_text": "",
"digests": {
"md5": "510f8be6640bbe35b41ba6c41b2e3653",
"sha256": "99ad92a7886e99a5ad4a4fdd85ec6fbcac4a2495d1b5cea52921ccc881bce031"
},
"downloads": -1,
"filename": "z3c.formui-1.0.1.tar.gz",
"has_sig": false,
"md5_digest": "510f8be6640bbe35b41ba6c41b2e3653",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7127,
"upload_time": "2007-06-22T17:17:00",
"url": "https://files.pythonhosted.org/packages/8f/2c/36eba1545193a8d27c04c4fb569a95f6422171daf077d7c23315ac852904/z3c.formui-1.0.1.tar.gz"
}
],
"1.0c1": [
{
"comment_text": "",
"digests": {
"md5": "69c988a8f8c720bee457cac934b132aa",
"sha256": "1aa2c126b1e8276830238632f7c71679b6011e803aac7ce36f9506b67a95ac97"
},
"downloads": -1,
"filename": "z3c.formui-1.0c1-py2.4.egg",
"has_sig": false,
"md5_digest": "69c988a8f8c720bee457cac934b132aa",
"packagetype": "bdist_egg",
"python_version": "2.4",
"requires_python": null,
"size": 10562,
"upload_time": "2007-05-22T15:08:12",
"url": "https://files.pythonhosted.org/packages/fb/7a/5a79c9a733aa1ccc6a9dc189cd6f8ce8d26976a0bb8b038dd9d448617db6/z3c.formui-1.0c1-py2.4.egg"
},
{
"comment_text": "",
"digests": {
"md5": "be13e66b98b6aa0a6a96d96753b08cf9",
"sha256": "b1cdeae07cbaeaf7fd0b524955f03593a005bc2f973669ed0cfc35f2641ada6b"
},
"downloads": -1,
"filename": "z3c.formui-1.0c1.tar.gz",
"has_sig": false,
"md5_digest": "be13e66b98b6aa0a6a96d96753b08cf9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 4945,
"upload_time": "2007-05-22T15:06:12",
"url": "https://files.pythonhosted.org/packages/5a/2f/c0f6991c7765b31d01ca9bbd5e81b0118d35229f80a47e2bc4a7e7ec3b9e/z3c.formui-1.0c1.tar.gz"
}
],
"1.1.0": [
{
"comment_text": "",
"digests": {
"md5": "94e5c68bd20e7c46f0da6480e90c19cd",
"sha256": "d8da9b38faca2216bc28a06099b9fd5f5e81f888c858421e65c566925ff98b9d"
},
"downloads": -1,
"filename": "z3c.formui-1.1.0-py2.4.egg",
"has_sig": false,
"md5_digest": "94e5c68bd20e7c46f0da6480e90c19cd",
"packagetype": "bdist_egg",
"python_version": "2.4",
"requires_python": null,
"size": 11811,
"upload_time": "2007-06-29T05:54:23",
"url": "https://files.pythonhosted.org/packages/fc/e6/211bfd27d3587af54e65fafe8c25789e5f432beba539f90559fcefad2988/z3c.formui-1.1.0-py2.4.egg"
},
{
"comment_text": "",
"digests": {
"md5": "b496525b7a1e6cfb9dc2977b81a6f21c",
"sha256": "3aaaebf0537146c0ed7efea3a22e22e4b50d9c9e6d69320e06a29faa01490cf6"
},
"downloads": -1,
"filename": "z3c.formui-1.1.0.tar.gz",
"has_sig": false,
"md5_digest": "b496525b7a1e6cfb9dc2977b81a6f21c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7617,
"upload_time": "2007-06-29T05:54:13",
"url": "https://files.pythonhosted.org/packages/32/c6/cd84938592291ac7f98cdc284b2229eb3fed113ff5a76603ce115c3a12bf/z3c.formui-1.1.0.tar.gz"
}
],
"1.1.1": [
{
"comment_text": "",
"digests": {
"md5": "30077c363dd5b5e2dcbae4ad3c74a44f",
"sha256": "8382fe3270a62b72fd2a0711989204ea89f30908ae912661123bca58421b241b"
},
"downloads": -1,
"filename": "z3c.formui-1.1.1-py2.4.egg",
"has_sig": false,
"md5_digest": "30077c363dd5b5e2dcbae4ad3c74a44f",
"packagetype": "bdist_egg",
"python_version": "2.4",
"requires_python": null,
"size": 12606,
"upload_time": "2007-07-04T17:34:20",
"url": "https://files.pythonhosted.org/packages/f3/20/a625655c5887779a10a0219039b84e38c77cab08d1017442a37722f21a3e/z3c.formui-1.1.1-py2.4.egg"
},
{
"comment_text": "",
"digests": {
"md5": "f84a71a29408548e9ac34a5ea11f2172",
"sha256": "3ec7bd3ceaa788b61af853a467d93782de7dc42d099774de45aaba57436e295b"
},
"downloads": -1,
"filename": "z3c.formui-1.1.1.tar.gz",
"has_sig": false,
"md5_digest": "f84a71a29408548e9ac34a5ea11f2172",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7860,
"upload_time": "2007-07-04T17:34:08",
"url": "https://files.pythonhosted.org/packages/95/48/64c54128d7c8acc6b50432cfb89611b5089fc9d07592b45391b97b2b72ea/z3c.formui-1.1.1.tar.gz"
}
],
"1.2.0": [
{
"comment_text": "",
"digests": {
"md5": "5c15142978980abcec51eefa0c0eaec8",
"sha256": "bdf713ec1a55f07ae105128d103db2a41cb9b9227eacc60e97d0a9a0c41ebbae"
},
"downloads": -1,
"filename": "z3c.formui-1.2.0-py2.4.egg",
"has_sig": false,
"md5_digest": "5c15142978980abcec51eefa0c0eaec8",
"packagetype": "bdist_egg",
"python_version": "2.4",
"requires_python": null,
"size": 12680,
"upload_time": "2007-07-19T05:56:51",
"url": "https://files.pythonhosted.org/packages/ea/2a/2fd58868e815e350aed28246bbbf6d17c2a403ad62bfc266ab98a5c57478/z3c.formui-1.2.0-py2.4.egg"
},
{
"comment_text": "",
"digests": {
"md5": "db60159f2d3bf13ead61f83752c4cba8",
"sha256": "0c3de2933f024310929b1d6460e0514df4222b373e3580ea0a9963bc5d0e95ee"
},
"downloads": -1,
"filename": "z3c.formui-1.2.0.tar.gz",
"has_sig": false,
"md5_digest": "db60159f2d3bf13ead61f83752c4cba8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7957,
"upload_time": "2007-07-19T05:56:44",
"url": "https://files.pythonhosted.org/packages/49/95/20259a35b6f21ff8614d523ee1d62868c614f032c3567fa4039b33728a8a/z3c.formui-1.2.0.tar.gz"
}
],
"1.3.0": [
{
"comment_text": "",
"digests": {
"md5": "69f0db41231ffda39ba2d5688407c654",
"sha256": "a43d4b48a44d7d2ca1356a2cd686b4e8b250a9a9224aa30675e46709461c030b"
},
"downloads": -1,
"filename": "z3c.formui-1.3.0-py2.4.egg",
"has_sig": false,
"md5_digest": "69f0db41231ffda39ba2d5688407c654",
"packagetype": "bdist_egg",
"python_version": "2.4",
"requires_python": null,
"size": 12935,
"upload_time": "2007-08-24T03:43:56",
"url": "https://files.pythonhosted.org/packages/fa/9e/4c58170c0fd6fb43d0b5cd2fcb78a65e3fc3b7b1125543ca1efa2bfc89bb/z3c.formui-1.3.0-py2.4.egg"
},
{
"comment_text": "",
"digests": {
"md5": "431139b3869cbc5d916177a879a5c653",
"sha256": "2a7010ee90ca0bead58c7e5935d97ddffbedc07e759c659cd5f2177ff9e9a1d8"
},
"downloads": -1,
"filename": "z3c.formui-1.3.0.tar.gz",
"has_sig": false,
"md5_digest": "431139b3869cbc5d916177a879a5c653",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8428,
"upload_time": "2007-08-24T03:43:48",
"url": "https://files.pythonhosted.org/packages/5b/f4/415fc5fb5e72375c2f958da28cee5026deea25d665cdc89529ff76194e3b/z3c.formui-1.3.0.tar.gz"
}
],
"1.4.0": [
{
"comment_text": "",
"digests": {
"md5": "f48c85721d5e90940e5db4aa5a573d47",
"sha256": "23333abba3e36a4a8be415e8ab2fb5a784b3a93f2b3c2a43dc3d3877e360cc1d"
},
"downloads": -1,
"filename": "z3c.formui-1.4.0.tar.gz",
"has_sig": false,
"md5_digest": "f48c85721d5e90940e5db4aa5a573d47",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 16185,
"upload_time": "2008-01-21T05:40:28",
"url": "https://files.pythonhosted.org/packages/fe/77/94a308adf6e9fcce54eaa270678d2aa716bca33064c1377d5a6f4fbcf94d/z3c.formui-1.4.0.tar.gz"
}
],
"1.4.1": [
{
"comment_text": "",
"digests": {
"md5": "782ff23a9cdc3194b3694a13dd9b7217",
"sha256": "f9c6621242551f2ef0e19653bcb64b6b91b3ce439adf88e7ed97ed895ec94981"
},
"downloads": -1,
"filename": "z3c.formui-1.4.1.tar.gz",
"has_sig": false,
"md5_digest": "782ff23a9cdc3194b3694a13dd9b7217",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 22469,
"upload_time": "2008-01-23T22:00:52",
"url": "https://files.pythonhosted.org/packages/df/c9/b1988c7cccdb311a4ef438e964cde3ebb727fbc462b3547cd50ab7c83ed8/z3c.formui-1.4.1.tar.gz"
}
],
"1.4.2": [
{
"comment_text": "",
"digests": {
"md5": "bb7383690b8949e3de702666796906ea",
"sha256": "f98e9f28ba792e73ab16d4d13e8fff3c6b065b5ad0d77d5a1e145faed14e81e2"
},
"downloads": -1,
"filename": "z3c.formui-1.4.2.tar.gz",
"has_sig": false,
"md5_digest": "bb7383690b8949e3de702666796906ea",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 22560,
"upload_time": "2008-08-27T04:41:56",
"url": "https://files.pythonhosted.org/packages/75/b3/4543230f159d65e2d9f4dc0dcf3008333d8686a86e208b13919b7782aa19/z3c.formui-1.4.2.tar.gz"
}
],
"1.4.3": [
{
"comment_text": "",
"digests": {
"md5": "636b1d359c96e133298ec8c0b8d27d10",
"sha256": "1ac8228142c9bfea667d83f32cb5ca50183377660c9ba801636a9b04a81b28ee"
},
"downloads": -1,
"filename": "z3c.formui-1.4.3.tar.gz",
"has_sig": false,
"md5_digest": "636b1d359c96e133298ec8c0b8d27d10",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23680,
"upload_time": "2009-03-07T12:38:56",
"url": "https://files.pythonhosted.org/packages/c1/c7/f94e80d5322f8baf930b467513329cc53bf32046abefa05c217a5a83d493/z3c.formui-1.4.3.tar.gz"
}
],
"2.0.0": [
{
"comment_text": "",
"digests": {
"md5": "39f8cd014963b3a8ae73617d8750a4a3",
"sha256": "b4eae9fd78308eb61e664c1396cbccb93a9b4923f43d7f743cb880de7149a99b"
},
"downloads": -1,
"filename": "z3c.formui-2.0.0.tar.gz",
"has_sig": false,
"md5_digest": "39f8cd014963b3a8ae73617d8750a4a3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26137,
"upload_time": "2009-06-14T04:58:39",
"url": "https://files.pythonhosted.org/packages/42/5d/a052981c41c3cb26d3589dcc51c55f9c2e48a64d926c333039bf1a154cfd/z3c.formui-2.0.0.tar.gz"
}
],
"2.1.0": [
{
"comment_text": "",
"digests": {
"md5": "58439eaf1a609d3d27f25ce3dcf22257",
"sha256": "ec09e7d7c6fbdbc91d87b1f60a061a017e9243376763619c69d508ea303353b8"
},
"downloads": -1,
"filename": "z3c.formui-2.1.0.tar.gz",
"has_sig": false,
"md5_digest": "58439eaf1a609d3d27f25ce3dcf22257",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27912,
"upload_time": "2009-09-01T20:27:37",
"url": "https://files.pythonhosted.org/packages/bb/b4/24bd215d269813fef1f5179425a32f9687f12c9524e3278036f2d3b4bd84/z3c.formui-2.1.0.tar.gz"
}
],
"2.2.0": [
{
"comment_text": "",
"digests": {
"md5": "9f507fb083e7f80b03b2acdc892ae192",
"sha256": "850694867213bdaf8bc68d78308b2e580bcbde767dddbf2161645824fa15f5c2"
},
"downloads": -1,
"filename": "z3c.formui-2.2.0.tar.gz",
"has_sig": false,
"md5_digest": "9f507fb083e7f80b03b2acdc892ae192",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27284,
"upload_time": "2009-12-28T12:50:54",
"url": "https://files.pythonhosted.org/packages/06/de/d5f1f1dfe5d38580afde30826f53a4257bcf99991e3221f95396e28fdea0/z3c.formui-2.2.0.tar.gz"
}
],
"2.2.1": [
{
"comment_text": "",
"digests": {
"md5": "ec0577a16568438d4f6cbcce4725295d",
"sha256": "300be466dc2facefe63555e5e5289106957068fd501fee1c1795d211b83f8f84"
},
"downloads": -1,
"filename": "z3c.formui-2.2.1.tar.gz",
"has_sig": false,
"md5_digest": "ec0577a16568438d4f6cbcce4725295d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30259,
"upload_time": "2012-01-09T20:08:30",
"url": "https://files.pythonhosted.org/packages/8c/b3/c54296da59a1ee63cd203591af186e9df513569566161ce47a7d21e30117/z3c.formui-2.2.1.tar.gz"
}
],
"2.3.0": [
{
"comment_text": "",
"digests": {
"md5": "00d3a9119bc5339c34b237000515441e",
"sha256": "65b1cfc23b445b58c3302a0815d417671d156035cfcd65725a1da933304dbf58"
},
"downloads": -1,
"filename": "z3c.formui-2.3.0.tar.gz",
"has_sig": false,
"md5_digest": "00d3a9119bc5339c34b237000515441e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30046,
"upload_time": "2012-03-15T21:22:57",
"url": "https://files.pythonhosted.org/packages/13/f9/3ffc6dde23c288e42163d74c0eaba0a9a454747433a4d9c46fe90d402e3c/z3c.formui-2.3.0.tar.gz"
}
],
"3.0.0": [
{
"comment_text": "",
"digests": {
"md5": "ba1b28ff1c4d7d0bdd1f051b8671595d",
"sha256": "b3be6ccaf24bc9f337f0c292a7d13ad393c1b3521109e7987c826c7391b3fb70"
},
"downloads": -1,
"filename": "z3c.formui-3.0.0.tar.gz",
"has_sig": false,
"md5_digest": "ba1b28ff1c4d7d0bdd1f051b8671595d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30572,
"upload_time": "2015-11-09T14:47:45",
"url": "https://files.pythonhosted.org/packages/d4/93/683357b75df7290b1f1fa4b85d886e8181f92d41f7ecbfb3c4d9b6df51ab/z3c.formui-3.0.0.tar.gz"
}
],
"3.0.0a1": [
{
"comment_text": "",
"digests": {
"md5": "f85de178775a6df51164cc17cfe3d5b9",
"sha256": "651caaa3251200a5e9e8d403924fc76f7a6b298ad914e7d55b5d6aa9982bb0f1"
},
"downloads": -1,
"filename": "z3c.formui-3.0.0a1.zip",
"has_sig": false,
"md5_digest": "f85de178775a6df51164cc17cfe3d5b9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 44323,
"upload_time": "2013-02-25T15:17:03",
"url": "https://files.pythonhosted.org/packages/91/ab/f0512b704e1bf28786ff0c5412e8f7a00a00f8b0a9fec0ebb301bc945091/z3c.formui-3.0.0a1.zip"
}
],
"3.0.0a2": [
{
"comment_text": "",
"digests": {
"md5": "f0760ad09af46969bbba2a5a166e37f3",
"sha256": "5fa1abcf6c89f71b061503fb20adaba49418e2b789772ef8bec7172471d35e88"
},
"downloads": -1,
"filename": "z3c.formui-3.0.0a2.zip",
"has_sig": false,
"md5_digest": "f0760ad09af46969bbba2a5a166e37f3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 44482,
"upload_time": "2013-02-26T15:49:16",
"url": "https://files.pythonhosted.org/packages/24/c5/98f8745d66ac067f4c0b2493efe3223f5518dd38380d7012ef04489f4422/z3c.formui-3.0.0a2.zip"
}
],
"3.1": [
{
"comment_text": "",
"digests": {
"md5": "7223891e794d6fdc4ebb562e5ce741de",
"sha256": "51ecdae00d7b7ceb1ec1508d47aa41d8344d40031af24865930afe1969e80a02"
},
"downloads": -1,
"filename": "z3c.formui-3.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "7223891e794d6fdc4ebb562e5ce741de",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
"size": 37707,
"upload_time": "2018-11-15T19:50:33",
"url": "https://files.pythonhosted.org/packages/8c/21/8acdc10f2253a3539b7110c43e02da0a313d92c0ed8bd39a26849e5f7688/z3c.formui-3.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "4a26b05f919185c518bffdb8facf0f4a",
"sha256": "f64e53fd2facb6779f49a705a513a57c5cbc9c72c960b8e17d492a7bd794230d"
},
"downloads": -1,
"filename": "z3c.formui-3.1.tar.gz",
"has_sig": false,
"md5_digest": "4a26b05f919185c518bffdb8facf0f4a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
"size": 32946,
"upload_time": "2018-11-15T19:50:35",
"url": "https://files.pythonhosted.org/packages/4a/1a/b15c7b18acc6569922b3fe35f4a11467fbed4e632651f417c42349cc1e5d/z3c.formui-3.1.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "7223891e794d6fdc4ebb562e5ce741de",
"sha256": "51ecdae00d7b7ceb1ec1508d47aa41d8344d40031af24865930afe1969e80a02"
},
"downloads": -1,
"filename": "z3c.formui-3.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "7223891e794d6fdc4ebb562e5ce741de",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
"size": 37707,
"upload_time": "2018-11-15T19:50:33",
"url": "https://files.pythonhosted.org/packages/8c/21/8acdc10f2253a3539b7110c43e02da0a313d92c0ed8bd39a26849e5f7688/z3c.formui-3.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "4a26b05f919185c518bffdb8facf0f4a",
"sha256": "f64e53fd2facb6779f49a705a513a57c5cbc9c72c960b8e17d492a7bd794230d"
},
"downloads": -1,
"filename": "z3c.formui-3.1.tar.gz",
"has_sig": false,
"md5_digest": "4a26b05f919185c518bffdb8facf0f4a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
"size": 32946,
"upload_time": "2018-11-15T19:50:35",
"url": "https://files.pythonhosted.org/packages/4a/1a/b15c7b18acc6569922b3fe35f4a11467fbed4e632651f417c42349cc1e5d/z3c.formui-3.1.tar.gz"
}
]
}