{ "info": { "author": "Steve McMahon", "author_email": "steve@dcn.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 6 - Mature", "Framework :: Plone", "Framework :: Plone :: 5.0", "Framework :: Zope2", "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", "Operating System :: OS Independent", "Programming Language :: JavaScript", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "Introduction\n============\n\nThis package provides a generic Plone form generator.\nUse it to build simple, one-of-a-kind, web forms that save or mail form input.\n\nRepository for this add on is at https://github.com/smcmahon/Products.PloneFormGen.\nA documentation area is at http://docs.plone.org/working-with-content/managing-content/ploneformgen/\nand an issue tracker at https://github.com/smcmahon/Products.PloneFormGen/issues\n\nPlease use the Plone forum at https://community.plone.org for\nsupport requests. If you are unable to get your questions answered\nthere, or are interested in helping develop the product, contact Steve\nMcMahon: steve@dcn.org.\n\n.. image:: https://travis-ci.org/smcmahon/Products.PloneFormGen.svg?branch=master\n :alt: Travis CI badge; if you break it, you fix it.\n :target: https://travis-ci.org/smcmahon/Products.PloneFormGen\n\n\n1.8 Notes\n=========\n\nPFG 1.8 is intended for use with Plone 5+. If you're using Plone 4.1.x-4.3.x, choose PFG 1.7.x. PFG 1.6.x targets Plone < 4.1.\n\ncollective.js.jqueryui is no longer required. If you've migrated from Plone 4.x and no other package is using it, you may uninstall it.\n\nKnown Issues\n------------\n\n * Export/Import is not yet working;\n * The ReCAPTCHA config form is primitive.\n\nOverview\n========\n\nPloneFormGen is a generic Plone form generator using fields,\nwidgets and validators from Archetypes. Use it to build simple,\none-of-a-kind, web forms that save or mail form input.\n\nTo build a web form, create a form folder, then add form fields as\ncontents. Individual fields can display and validate themselves for\ntesting purposes. The form folder creates a form from all the contained\nfield content objects.\n\nFinal disposition of form input is handled via plug-in action products.\nAction adapters included with this release include a mailer, a\nsave-data adapter that saves input in tab-separated format for later\ndownload, and a custom-script adapter that makes it possible to script\nsimple actions without recourse to the Zope Management Interface.\n\nTo make it easy to get started, newly created form folders are\npre-populated to act as a simple e-mail response form.\n\nDependencies\n============\n\nPlone: Plone 5.0b2+\n\nRequires PythonField, TALESField and TemplateFields from Jens W.\nKlein's ScriptableFields bundle: http://plone.org/products/scriptablefields/\n(automatically loaded if you install via Python package).\n\nEncryption of e-mail requires the Gnu Privacy Guard, GnuPG, also known\nas gpg. See README_GPG.txt for details.\n\nCAPTCHA support requires either collective.captcha or collective.recaptcha.\nSee README_CAPTCHA.txt for details.\n\nInstallation\n============\n\n* Just add ``Products.PloneFormGen`` to the eggs section of your buildout\n configuration and run buildout.\n\n* Restart Zope.\n\n* Go to the Site Setup page in the Plone interface and click on the\n Add/Remove Products link. Choose PloneFormGen (check its checkbox) and\n click the Install button. If PloneFormGen is not available on the\n Add/Remove Products list, it usually means that the product did not\n load due to missing prerequisites.\n\n* If necessary, use the PloneFormGen configlet in the \"Add-on Product\n Configuration\" section of Site Setup to customize the product for your\n site.\n\nPermissions\n===========\n\nSite managers may control the visibility and availability of many\nPloneFormGen functions by changing permissions for user roles. A\ncontrol panel configlet controls role/permission associations for the\nportal root. For an explanation of how PloneFormGen permissions map to\nform folder and form field fields, see improvement proposal #3, Provide\nways to hide advanced options from classes of\nusers: http://plone.org/products/ploneformgen/roadmap/3 .\n\nSecurity\n========\n\nAs shipped, only managers may use TALES expressions to override\ndefaults and validators. You may wish to add additional roles, but keep\nin mind that this is a potential security risk; it basically gives the\nsame powers as scripting or skin editing.\n\nHistory\n=======\n\nPloneFormGen has been continually updated since Plone 2. The maintainers\nare proud it's still maintained and reliable, but it should not be used\nas a good example of a current Plone packages. It contains too many\nhistorical layers.\n\nCredits\n=======\n\nArchetypes has been ruthlessly mined for concepts and functionality.\n\nForm and field icons are scavenged from Martijn Faassen's Formulator,\nand were edited only to add transparency to make them look a bit better\non the add items menu.\n\nThe mail adapter is basically a tailored version of PloneFormMailer,\nminus the Formulator adapter machinery. Thanks to PloneFormMailer's\nauthors, Jens Klein and Reinout van Rees for this code and for\ncontinual assistance since the package's introduction.\n\nPierre-Yves Landure provided tremendous help with the i18n machinery.\nSebastien Douche and Pierre-Yves Landure provided the French translation.\n\nMartin Aspeli's RichDocument has provided an invaluable reference,\nparticularly in how to handle installation and testing issues.\n\nMartin Aspeli, Wichert Akkerman, Eric Steele, Jens Klein and Reinout\nvan Rees all provided valuable early feedback.\n\nTitus Anderson provided the base code for the Ratings-Scale Field.\nAndreas Jung contributed the record-editing feature for the Save Data\nadapter.\n\nFulvio Casali, Alex Tokar, David Glick, Steve McMahon, Jesse Snyder,\nMichael Dunlap, Paul Bugni, Jon Baldivieso and Andrew Burkhalter all\ndid amazing things at the December 2008 PFG sprint sponsored by OneNW.\nSpecial thanks to David, for the CAPTCHA work, and Andrew for export/\nimport.\n\nThomas Buchberger provided the initial CAPTCHA field implementation.\n\nMaurits van Rees has been a co-maintainer for the 1.7.x and 1.8.x series. David Glick was co-maintainer for versions\n1.2.5 through 1.7.x. Thanks, Maurits and David!\n\nNenad Mancevic (Manca) added the widget toolbox and dramatically enhanced\nthe quick edit mode for his Google Summer of Code 2010 project. Thanks to\nManca and Google!\n\nAlec Mitchell, Nathan Van Gheem and Eric Steele provided vital assistance\nwith the Plone 5 update.\n\nSee the CHANGES.txt file for the very long list of people who helped\nwith particular features or bugs.\n\nLicense\n=======\n\nDistributed under the GPL v 2.\n\nSee LICENSE.txt and LICENSE.GPL for details.\n\n\nChange History\n==============\n\n1.8.6 (2019-07-29)\n------------------\n\n- Improve captcha error message.\n [rodfersou, idgserpro]\n\n- Add uninstall profile and setuphandler. Make Plone 5.1 happy.\n [smcmahon]\n\n- Allow comma for decimal separation in ExRangeValidator, because\n it is allowed by the underlying archetypes fields. Make users in some\n european countries happy.\n [nilo]\n\n\n1.8.5 (2017-12-20)\n------------------\n\n- Use datepicker widget for datetime input\n [tomgross, keul]\n\n\n1.8.4 (2017-07-08)\n------------------\n\n- Fix UnicodeDecodeError: RateScaleField with non-ascii values and without\n Thank-you-page.\n Fixes `issue #98 `_.\n [vkarppinen]\n\n- Remove collective.cover adapter reference.\n (Closes `#194 `_.\n [rodfersou]\n\n- Fixed UnicodeDecodeError when vocabulary value is a non-ascii string.\n This could happen in selection and multi selection fields.\n [maurits]\n\n- Change captcha verification message for `#186 `_.\n [tkimnguyen]\n\n- Fix issue where quickedit view caused rendering issues because\n of a tag not being closed.\n [datakurre]\n\n- Fix issue where logic in FormSaveDataAdapter's getColumnTitles was\n different than the logic for getColumnNames.\n [mikerenfro]\n\n- Fix redundant template fallback value.\n [zemm]\n\n\n1.8.3 (2016-12-06)\n------------------\n\n- Transform value to unicode before translating. Fix #182\n [pbauer]\n\n\n1.8.2 (2016-11-22)\n------------------\n\n- Fixed showing translations of help text. Since security release\n 1.8.1, help text was showing up with only the message id, for\n example ``help_placeholder``.\n Fixes `issue #178 `_.\n [maurits]\n\n- Use formActionOverride action in embedded view. [fRiSi]\n\n- Add option to download data from saveDataAdapter in excel format\n Excel download depends on the availability of the 'xlwt' python package.\n [tmog]\n\n\n1.8.1 (2016-05-01)\n------------------\n\n- CGI escape field help (description); prevent method call.\n Eliminates XSS vulnerability that could be exploited by users with the ability\n to create forms.\n [smcmahon]\n\n\n1.8.0 (2015-10-01)\n------------------\n\n- Moved our default_page_types setting to the registry.\n [maurits]\n\n- Get email settings from registry. Fixes several Plone 5 errors.\n Do not use ``plone_utils.getSiteEncoding()``, because this is\n deprecated and always returns ``utf-8``.\n [maurits]\n\n- Load widget specific css on quickedit form.\n [maurits]\n\n- Fix embedded view by removing deprecated global defines macro.\n [buchi]\n\n- Removed inline javascript that tried to block inline validation. It\n had no effect anymore on Plone 5, as no inline validation is done\n here anyway. And it interferes with themes that load jQuery near\n the bottom instead of in the head.\n [maurits]\n\n\n1.8.0b4 (2015-09-09)\n--------------------\n\n- Changed our content types to use TinyMCEWidget instead of\n RichWidget. The old one only showed a plain textarea. Fixes issue\n #152.\n\n- Fixed ``propertiestool.xml`` to not break importing\n ``types_not_searched``.\n\n\n1.8.0.beta3 (2015-07-20)\n------------------------\n\n- Show loading on new form OK.\n\n\n1.8.0.beta2 (2015-07-15)\n------------------------\n\n- Doc update.\n\n- travis config fixes.\n\n\n1.8.0.beta1 (2015-07-13)\n------------------------\n\n- Quick Editor working!\n\n- Use bundles architecture and requirejs.\n\n\n1.8.0.alpha1 (2015-06-29)\n-------------------------\n\n- Check commit log for changes related to P5 update.\n\n- 1.8 will target Plone 5. Maintenance branch is 1.7-maintenance.\n\n- Use content-core instead of main macro for templates using the\n main_template's master macro. Among fitting better in the standard plone\n environment and prepares for displaying in a full view (some modifications\n needed).\n [thet]\n\nFor previous changes, see docs/HISTORY.txt.", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://plone.org/products/ploneformgen", "keywords": "Plone PloneFormGen", "license": "GPL", "maintainer": "", "maintainer_email": "", "name": "Products.PloneFormGen", "package_url": "https://pypi.org/project/Products.PloneFormGen/", "platform": "", "project_url": "https://pypi.org/project/Products.PloneFormGen/", "project_urls": { "Homepage": "http://plone.org/products/ploneformgen" }, "release_url": "https://pypi.org/project/Products.PloneFormGen/1.8.6/", "requires_dist": null, "requires_python": "", "summary": "A through-the-web form generator for Plone", "version": "1.8.6" }, "last_serial": 5601775, "releases": { "1.2.2": [ { "comment_text": "", "digests": { "md5": "babbd658da9f8188b41cf321eda4dea9", "sha256": "730330c9f4e559bc644a38c048d38eea5ef02eee428b4fa50484446e43e54735" }, "downloads": -1, "filename": "Products.PloneFormGen-1.2.2-py2.4.egg", "has_sig": false, "md5_digest": "babbd658da9f8188b41cf321eda4dea9", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 474688, "upload_time": "2008-04-28T00:38:33", "url": "https://files.pythonhosted.org/packages/ca/d8/32fa4ee6a37e08133b47c9c33994bce8a0d6933c6385a1e06c40b390d630/Products.PloneFormGen-1.2.2-py2.4.egg" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "bd4fa463fe880a791a12ed6da4e81b58", "sha256": "542b019b088355b85d51e5000d9092e3156a73818fb14bf261a77a453c2b55cf" }, "downloads": -1, "filename": "Products.PloneFormGen-1.2.3-py2.4.egg", "has_sig": false, "md5_digest": "bd4fa463fe880a791a12ed6da4e81b58", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 475289, "upload_time": "2008-05-08T17:50:02", "url": "https://files.pythonhosted.org/packages/61/28/43f53bae8b548645f4ceddfac2e6dd27faa7c280a9db8b5d556c3de753ac/Products.PloneFormGen-1.2.3-py2.4.egg" } ], "1.2.4": [ { "comment_text": "", "digests": { "md5": "2539e587439f94959776bb2e7a5fba70", "sha256": "41d9ced8304e6dc508b41200a503c46a80fe5ba89db9ba2a727831fcabb3a4ad" }, "downloads": -1, "filename": "Products.PloneFormGen-1.2.4-py2.4.egg", "has_sig": false, "md5_digest": "2539e587439f94959776bb2e7a5fba70", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 496429, "upload_time": "2008-06-15T21:22:59", "url": "https://files.pythonhosted.org/packages/a2/81/8e399f927ac37574418d7b87b5f808d8acc9221ba296ecb33c1d8dad27e3/Products.PloneFormGen-1.2.4-py2.4.egg" } ], "1.2.5": [ { "comment_text": "", "digests": { "md5": "9a245857202647aacf5371d69ff72f64", "sha256": "8efcf958c1c0e3a28510818b19cd6e56b9ffe5b4c5b50eceec4fdf8aef522a29" }, "downloads": -1, "filename": "Products.PloneFormGen-1.2.5.tar.gz", "has_sig": false, "md5_digest": "9a245857202647aacf5371d69ff72f64", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 277991, "upload_time": "2008-10-16T04:02:38", "url": "https://files.pythonhosted.org/packages/52/89/af37f2559b4b0c3cdc0aecbe3d9ca13bed49cd7c4cccd0f89e04a050e449/Products.PloneFormGen-1.2.5.tar.gz" } ], "1.2.6": [ { "comment_text": "", "digests": { "md5": "e416feed1ec4a43d2c25d746e2e99793", "sha256": "ad816ec1b91de8be329156cbc34452425718b816b477c2fab9f6bfbbb06dc570" }, "downloads": -1, "filename": "Products.PloneFormGen-1.2.6.tar.gz", "has_sig": false, "md5_digest": "e416feed1ec4a43d2c25d746e2e99793", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 278355, "upload_time": "2009-03-20T00:52:44", "url": "https://files.pythonhosted.org/packages/3c/56/582606a20f97f8d006a909d75fd96313c0b48cd146550f431e82bfd4a923/Products.PloneFormGen-1.2.6.tar.gz" } ], "1.2.7": [ { "comment_text": "", "digests": { "md5": "179da687edff2060f025b89417a4416a", "sha256": "f7e56948ce7ac895e08dd89251926b957e01e40e526905a3e47134ef91bc8137" }, "downloads": -1, "filename": "Products.PloneFormGen-1.2.7-py2.4.egg", "has_sig": false, "md5_digest": "179da687edff2060f025b89417a4416a", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 526492, "upload_time": "2009-04-23T00:11:27", "url": "https://files.pythonhosted.org/packages/a6/12/12bbc2d7a31fa6fa5a2ee31a142d120ab3ad7a0902d878c564a54bbb0cbc/Products.PloneFormGen-1.2.7-py2.4.egg" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "04667a35d7165dc496f9f6249e799f8d", "sha256": "2bc434dd2fc94efbfd46d94f330279a0d97172600d93c3c023722b46a28a3ad4" }, "downloads": -1, "filename": "Products.PloneFormGen-1.5.0.tar.gz", "has_sig": false, "md5_digest": "04667a35d7165dc496f9f6249e799f8d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 336022, "upload_time": "2009-07-25T00:45:31", "url": "https://files.pythonhosted.org/packages/35/9a/fb43d77d7131b086c3a9f3be437666b9d4a8295d3a483a10ac0367dc5777/Products.PloneFormGen-1.5.0.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "d957289cc423c79007475b352d2ce0ed", "sha256": "9ea9f85e713ac1d700f9aedc070efc9aa67701955c43d872763398de8517a375" }, "downloads": -1, "filename": "Products.PloneFormGen-1.5.1.zip", "has_sig": false, "md5_digest": "d957289cc423c79007475b352d2ce0ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 508821, "upload_time": "2009-09-05T00:45:11", "url": "https://files.pythonhosted.org/packages/bd/7e/57563f06692afb961036db31f67accdbe3945cbb076b2959598d31f56208/Products.PloneFormGen-1.5.1.zip" } ], "1.5.2": [ { "comment_text": "", "digests": { "md5": "ef51263e72b1846e39241e5aa2e3e56d", "sha256": "b92138ad129fd78f206488047b4e2ca2df24a54e4f512f09901a20fdb9bbe094" }, "downloads": -1, "filename": "Products.PloneFormGen-1.5.2.zip", "has_sig": false, "md5_digest": "ef51263e72b1846e39241e5aa2e3e56d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 509274, "upload_time": "2009-09-29T17:13:20", "url": "https://files.pythonhosted.org/packages/d8/6f/70a40adb675ed0b253a9ae56d9e3b98a3681c73ae125e601a8aa595ffbb3/Products.PloneFormGen-1.5.2.zip" } ], "1.5.3": [ { "comment_text": "", "digests": { "md5": "b2bce00415ee1ad5c2bb754c672a9b35", "sha256": "fdd7fb98a6532f74c9c54b2cecde279d6b11f7a091f57713fe3161e56d97b4d3" }, "downloads": -1, "filename": "Products.PloneFormGen-1.5.3.zip", "has_sig": false, "md5_digest": "b2bce00415ee1ad5c2bb754c672a9b35", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 558435, "upload_time": "2009-11-04T23:49:15", "url": "https://files.pythonhosted.org/packages/09/59/221d2baa096d8da2ec4e48fdbbda297a4caf0de6c6a64770ca544556e7e5/Products.PloneFormGen-1.5.3.zip" } ], "1.5.4": [ { "comment_text": "", "digests": { "md5": "539328e8d64328d3e411b4ed81f7eca1", "sha256": "08e76b4aae5a8cb39619bf6c1fa6ffaaf6259420a6faa5d41f11dac4d4985269" }, "downloads": -1, "filename": "Products.PloneFormGen-1.5.4.zip", "has_sig": false, "md5_digest": "539328e8d64328d3e411b4ed81f7eca1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 510482, "upload_time": "2009-11-05T23:31:09", "url": "https://files.pythonhosted.org/packages/18/70/a22b2c9a4883163fb5c2df2b2ae7593fa728cdb3a5b3d6d1431d8396e0b2/Products.PloneFormGen-1.5.4.zip" } ], "1.5.5": [ { "comment_text": "", "digests": { "md5": "b145d1e3356fdce57877888512564580", "sha256": "230539249473e14d60251752f8c295f10d08c84c396224c5329b506f204c5fe8" }, "downloads": -1, "filename": "Products.PloneFormGen-1.5.5.zip", "has_sig": false, "md5_digest": "b145d1e3356fdce57877888512564580", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 525915, "upload_time": "2010-01-21T05:06:34", "url": "https://files.pythonhosted.org/packages/26/e6/2cc1facf7563d151f4b2b978af245b3b89132f958f5ffeb88b367b879308/Products.PloneFormGen-1.5.5.zip" } ], "1.5b1": [ { "comment_text": "", "digests": { "md5": "8284c4f66d8990db3c642f99ced96b1b", "sha256": "19245ba1acb50aa3fecb65370a28f5b84a6c29a8cdf5511b14cd0dc4045db92b" }, "downloads": -1, "filename": "Products.PloneFormGen-1.5b1-py2.4.egg", "has_sig": false, "md5_digest": "8284c4f66d8990db3c642f99ced96b1b", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 599104, "upload_time": "2008-12-18T00:11:49", "url": "https://files.pythonhosted.org/packages/a5/e8/c8157ee55a8cc262d582cca0147affcf976e04a67e406ec669c3db5b85bd/Products.PloneFormGen-1.5b1-py2.4.egg" } ], "1.5b2": [ { "comment_text": "", "digests": { "md5": "464bbd33a874260c26533fe1e17a3d5a", "sha256": "875041d0e42a6840d719ef11a2d0d4aceb7eeb92f3546b3acb723d4c85d6979e" }, "downloads": -1, "filename": "Products.PloneFormGen-1.5b2-py2.4.egg", "has_sig": false, "md5_digest": "464bbd33a874260c26533fe1e17a3d5a", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 633865, "upload_time": "2009-01-11T19:53:18", "url": "https://files.pythonhosted.org/packages/58/03/6f6661a98c47d992723056fb5b7e2bf1eb73314fd697bf6f1bc95df2118d/Products.PloneFormGen-1.5b2-py2.4.egg" } ], "1.5b3": [ { "comment_text": "", "digests": { "md5": "523d3c0285f96d36db7b8de3e43e1979", "sha256": "b8038f0bc3a06229380b9550c0c1c28a1b61eb32f93cbd44606c92a709e9c58e" }, "downloads": -1, "filename": "Products.PloneFormGen-1.5b3-py2.4.egg", "has_sig": false, "md5_digest": "523d3c0285f96d36db7b8de3e43e1979", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 656710, "upload_time": "2009-03-03T04:57:42", "url": "https://files.pythonhosted.org/packages/81/02/63f52bd41c76a3bf3efe0c3b31f6de9c8a7d16f2b1fc36ba427eda0089e4/Products.PloneFormGen-1.5b3-py2.4.egg" } ], "1.5b4": [ { "comment_text": "", "digests": { "md5": "f4e7292c0f51b5ec4dabfc84379beaf1", "sha256": "0949aa7bd3f6cab07564b687cae3f222c8c2a1b4860b582daa7ed1d9ed79c035" }, "downloads": -1, "filename": "Products.PloneFormGen-1.5b4-py2.4.egg", "has_sig": false, "md5_digest": "f4e7292c0f51b5ec4dabfc84379beaf1", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 619857, "upload_time": "2009-04-08T23:52:00", "url": "https://files.pythonhosted.org/packages/4b/71/ca4d781f7fca019314e9c6aca3344491cd341db13b587cc3db5ae6070cce/Products.PloneFormGen-1.5b4-py2.4.egg" } ], "1.5b5": [ { "comment_text": "", "digests": { "md5": "7c75c41b68c1370bbd6a3f3241164c8f", "sha256": "72750938aeea08a06ea8e0594f85695aabb8da894094493d412ca0b4d38a8fe7" }, "downloads": -1, "filename": "Products.PloneFormGen-1.5b5-py2.4.egg", "has_sig": false, "md5_digest": "7c75c41b68c1370bbd6a3f3241164c8f", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 661160, "upload_time": "2009-04-10T00:53:55", "url": "https://files.pythonhosted.org/packages/56/d6/6e6dae506a7faad242f6fc4dfe7b183a412891108abd3aaa466bf8efdc2d/Products.PloneFormGen-1.5b5-py2.4.egg" } ], "1.5rc1": [ { "comment_text": "", "digests": { "md5": "2f69b43430d085fbf22329111d826f61", "sha256": "ebc158100ce3f3e5834fbecf421c1f1d25b71514c390a2ef064650ab013218cb" }, "downloads": -1, "filename": "Products.PloneFormGen-1.5rc1.tar.gz", "has_sig": false, "md5_digest": "2f69b43430d085fbf22329111d826f61", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 338864, "upload_time": "2009-05-25T23:42:46", "url": "https://files.pythonhosted.org/packages/66/18/62eaa3c1734d3a7b860795cb453a7eeb3a969a2f8f032a6afd7d0b045bf3/Products.PloneFormGen-1.5rc1.tar.gz" } ], "1.5rc2": [ { "comment_text": "", "digests": { "md5": "360e4966df01a20f18460b6dd5aed1c0", "sha256": "dc281ee5080344be16aeb7330fb69c3ea6c662a6e010e8becc10e5d84198583a" }, "downloads": -1, "filename": "Products.PloneFormGen-1.5rc2.tar.gz", "has_sig": false, "md5_digest": "360e4966df01a20f18460b6dd5aed1c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 335822, "upload_time": "2009-06-16T18:22:19", "url": "https://files.pythonhosted.org/packages/3b/8e/17ff68d1bb0bff605903e10bab46ab844d541c0aa664687d5e8ef344ff59/Products.PloneFormGen-1.5rc2.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "027284f45e7ef2425d65be2aa905a805", "sha256": "eee7e37583cca18614cf3c1f762ad623c59ffa61baac8ddf8b722d1081782d9f" }, "downloads": -1, "filename": "Products.PloneFormGen-1.6.0.zip", "has_sig": false, "md5_digest": "027284f45e7ef2425d65be2aa905a805", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 519012, "upload_time": "2010-10-09T20:59:35", "url": "https://files.pythonhosted.org/packages/74/c8/10c5576ccfcd5f434e3215e363c2d0cba5518081198ef4ea92fb59e79a1b/Products.PloneFormGen-1.6.0.zip" } ], "1.6.0b1": [ { "comment_text": "", "digests": { "md5": "5c259fa042542da29fab8657fa5d8964", "sha256": "279bc794340f912b2c322c474ac41f3c41384c41b262ad8009d899e11d765354" }, "downloads": -1, "filename": "Products.PloneFormGen-1.6.0b1.zip", "has_sig": false, "md5_digest": "5c259fa042542da29fab8657fa5d8964", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 525925, "upload_time": "2010-03-01T19:32:43", "url": "https://files.pythonhosted.org/packages/d7/47/9a18b7bec2400a4e98273a38653032058ecbc9a5888fd42190607b370ef9/Products.PloneFormGen-1.6.0b1.zip" } ], "1.6.0b2": [ { "comment_text": "", "digests": { "md5": "1adbe5c2c4edd6ff8df6fe1cffe7d223", "sha256": "33a26d137acdcd2c1b2223c379052609e9b3738b1d77745a778476b89da77c26" }, "downloads": -1, "filename": "Products.PloneFormGen-1.6.0b2.zip", "has_sig": false, "md5_digest": "1adbe5c2c4edd6ff8df6fe1cffe7d223", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 525980, "upload_time": "2010-03-09T23:49:13", "url": "https://files.pythonhosted.org/packages/c8/9d/8b67a6ff443767ad43eeafa46bde7f6180432f3c359cb9560c3cf69da85e/Products.PloneFormGen-1.6.0b2.zip" } ], "1.6.0b3": [ { "comment_text": "", "digests": { "md5": "daba436727e4bd08ea4fe15a0aee2686", "sha256": "d8fe05f210229451007ef0711682240d8d6fc466f9084749ab7ac0c1912d7eea" }, "downloads": -1, "filename": "Products.PloneFormGen-1.6.0b3.tar.gz", "has_sig": false, "md5_digest": "daba436727e4bd08ea4fe15a0aee2686", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 350627, "upload_time": "2010-04-07T19:45:21", "url": "https://files.pythonhosted.org/packages/74/d6/3b109d8c1bb11ba45c214f2e2fca97039d88ae398c971e4c3efa0da8c1f6/Products.PloneFormGen-1.6.0b3.tar.gz" } ], "1.6.0b4": [ { "comment_text": "", "digests": { "md5": "193de8f109e8f7211ed287bd6504cdc2", "sha256": "86f58af136d1d1effd772428dd36c55b244a949f0e1aede057f59e97ace3b222" }, "downloads": -1, "filename": "Products.PloneFormGen-1.6.0b4.zip", "has_sig": false, "md5_digest": "193de8f109e8f7211ed287bd6504cdc2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 537172, "upload_time": "2010-07-13T23:33:24", "url": "https://files.pythonhosted.org/packages/eb/90/60588c92aea88887b63608210c6c95e5fd4df8d4140915e0f6cf6dd4f1cd/Products.PloneFormGen-1.6.0b4.zip" } ], "1.6.0b5": [ { "comment_text": "", "digests": { "md5": "890f38b939815484a3872daf983f8859", "sha256": "db73087abe7b0fce6acdca923fab0022fa60273f5557af484cc9690eaadc1eef" }, "downloads": -1, "filename": "Products.PloneFormGen-1.6.0b5.zip", "has_sig": false, "md5_digest": "890f38b939815484a3872daf983f8859", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 518675, "upload_time": "2010-09-24T00:57:07", "url": "https://files.pythonhosted.org/packages/b9/68/2ab19564c785acdc27a3c9027365d868628ec04457959cc054f8bd08a956/Products.PloneFormGen-1.6.0b5.zip" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "4743b3d7b1cfdff1859bad95b718a90a", "sha256": "46841bf6f628ad0003227c76137b61fc07fc47785c83bb702801b760c4e1a01e" }, "downloads": -1, "filename": "Products.PloneFormGen-1.6.1.zip", "has_sig": false, "md5_digest": "4743b3d7b1cfdff1859bad95b718a90a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 534546, "upload_time": "2011-05-20T21:25:12", "url": "https://files.pythonhosted.org/packages/89/9c/9abe5f668ad4a3d11ce069bf94954a8d9c285f1c2a01f4167279ce9d5cb8/Products.PloneFormGen-1.6.1.zip" } ], "1.6.2": [ { "comment_text": "", "digests": { "md5": "d8cb930c944eb765b661b0841d5cb383", "sha256": "c92d5796b9839a232e734e2d846c2412295bb58dd163bd9112bbce7145910c6b" }, "downloads": -1, "filename": "Products.PloneFormGen-1.6.2.zip", "has_sig": false, "md5_digest": "d8cb930c944eb765b661b0841d5cb383", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 534340, "upload_time": "2011-05-31T21:53:26", "url": "https://files.pythonhosted.org/packages/15/34/1bb6f43fab509f4173158cbd69c86adff953e54928d0a80c52e4cb9abcca/Products.PloneFormGen-1.6.2.zip" } ], "1.6.3": [ { "comment_text": "", "digests": { "md5": "36aac08c071003d8bab04c95dc6b9dc9", "sha256": "c85084f8a4cea0677ce1d8f55bfb1ba182ba46d6c8dd0293f44270834a759e33" }, "downloads": -1, "filename": "Products.PloneFormGen-1.6.3.zip", "has_sig": false, "md5_digest": "36aac08c071003d8bab04c95dc6b9dc9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 534560, "upload_time": "2011-06-06T01:04:02", "url": "https://files.pythonhosted.org/packages/dd/4e/9d8085eb1b287fb7f9674897d6bb5e2119ea6651511688ea6c19ed229e2d/Products.PloneFormGen-1.6.3.zip" } ], "1.6.4": [ { "comment_text": "", "digests": { "md5": "c4bb1c1688d9221c3bd4158592b25e26", "sha256": "3186ffb3c8d9a5532ea040251129ddb9dc7239bb4dc549fc8fa5ec2dc396181a" }, "downloads": -1, "filename": "Products.PloneFormGen-1.6.4.zip", "has_sig": false, "md5_digest": "c4bb1c1688d9221c3bd4158592b25e26", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 535143, "upload_time": "2011-07-03T23:58:37", "url": "https://files.pythonhosted.org/packages/a6/96/cc3e875b69c313cb8aacc876b68b084c379773287ab57eeb0b0edc0e589f/Products.PloneFormGen-1.6.4.zip" } ], "1.6.5": [ { "comment_text": "", "digests": { "md5": "55c0e31a8de2d82c884c6913ec5e5a4f", "sha256": "3bf8dd7b5980428429d3acdaae87bbeeb893953af355a36779e1c4a1ce56a1ac" }, "downloads": -1, "filename": "Products.PloneFormGen-1.6.5.zip", "has_sig": false, "md5_digest": "55c0e31a8de2d82c884c6913ec5e5a4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 535501, "upload_time": "2011-07-13T02:35:08", "url": "https://files.pythonhosted.org/packages/55/09/982c853574fba7d7ac6f24598a97a4215c07be4193e440cd9941925d122a/Products.PloneFormGen-1.6.5.zip" } ], "1.6.6": [ { "comment_text": "", "digests": { "md5": "5a89729bdcea23ef17da0e814de3a82b", "sha256": "edba7b8027ed93d6198b7fc78788afecc538438bd6e5b91c2d494cf0c1d04529" }, "downloads": -1, "filename": "Products.PloneFormGen-1.6.6.zip", "has_sig": false, "md5_digest": "5a89729bdcea23ef17da0e814de3a82b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 616048, "upload_time": "2013-01-18T12:18:11", "url": "https://files.pythonhosted.org/packages/29/27/e09a1eb83b57cae1dece9e32674a7f0fbad5f372390362dd410e6121cbd3/Products.PloneFormGen-1.6.6.zip" } ], "1.6.7": [ { "comment_text": "", "digests": { "md5": "21107d0cf66d90b255110e5fe072c6ad", "sha256": "84ea49dc02ae2721639470701129a0f9727cd0ffb902a5493d6b0e710d47ea17" }, "downloads": -1, "filename": "Products.PloneFormGen-1.6.7.zip", "has_sig": false, "md5_digest": "21107d0cf66d90b255110e5fe072c6ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 537365, "upload_time": "2013-05-29T16:47:45", "url": "https://files.pythonhosted.org/packages/80/84/ae392d9500776f84d1b144d4175633d49ee89e0edc00b47e85533fed6be9/Products.PloneFormGen-1.6.7.zip" } ], "1.6.8": [ { "comment_text": "", "digests": { "md5": "b8b0c4dfede685c3ae815ff250ba41f3", "sha256": "5d579d5b29dabf01ff9bb56649ff989ecadaf8af71726d953863a3b5abd03523" }, "downloads": -1, "filename": "Products.PloneFormGen-1.6.8.zip", "has_sig": false, "md5_digest": "b8b0c4dfede685c3ae815ff250ba41f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 616369, "upload_time": "2013-09-04T12:18:53", "url": "https://files.pythonhosted.org/packages/20/c6/7c7b99fa0fafcc9c67c142491bb87cf6bc7d967a085010ff0352dad220a9/Products.PloneFormGen-1.6.8.zip" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "9fd8a8477bcf8571dc8b7bfd634b4ea1", "sha256": "f3c1c868b56c2cf71c19a24b452d119a10322f54e233ac7db9e9092dc4e54c02" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7.0.zip", "has_sig": false, "md5_digest": "9fd8a8477bcf8571dc8b7bfd634b4ea1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 763801, "upload_time": "2011-11-16T23:05:50", "url": "https://files.pythonhosted.org/packages/38/b7/e1b58cf1135eaa280c4341561b29b970f0cd56564c8f2c66ffd0de9130b0/Products.PloneFormGen-1.7.0.zip" } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "37b419a24f70daec3dd3338ed48ec527", "sha256": "eb5b6a4249c6586f0c74e7c4a695c5ef0b6d76fbb252e18b84ee9fae52802deb" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7.1.zip", "has_sig": false, "md5_digest": "37b419a24f70daec3dd3338ed48ec527", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 758115, "upload_time": "2012-02-14T01:50:08", "url": "https://files.pythonhosted.org/packages/9a/64/e8f2170eea03441021d9ea238708bf309efbab89532a4c24ded403b59b43/Products.PloneFormGen-1.7.1.zip" } ], "1.7.10": [ { "comment_text": "", "digests": { "md5": "8bbd7f7c463ba77e59886d6db2ca4184", "sha256": "8a9fa2bb2a01ba0a941a1de40ce0653ab23f71a2642edff133ccdbf8f7f78c01" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7.10.zip", "has_sig": false, "md5_digest": "8bbd7f7c463ba77e59886d6db2ca4184", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 610342, "upload_time": "2013-05-29T17:01:17", "url": "https://files.pythonhosted.org/packages/12/fc/7837bad57ece672ce47cdc0264aab9db7317eb3d34757a3dde594fe5d242/Products.PloneFormGen-1.7.10.zip" } ], "1.7.11": [ { "comment_text": "", "digests": { "md5": "ad144c3665070188b78084291992082b", "sha256": "ce6a1a89f6decb0a80bfcc0a51c09d65f567cd1eba826bb6b487fe59f80ee277" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7.11.zip", "has_sig": false, "md5_digest": "ad144c3665070188b78084291992082b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 725605, "upload_time": "2013-05-29T17:14:53", "url": "https://files.pythonhosted.org/packages/49/33/aab4aad0edac58d00afe63da60138d11c3774eb29768aa65831310841ab1/Products.PloneFormGen-1.7.11.zip" } ], "1.7.12": [ { "comment_text": "", "digests": { "md5": "760fcf282369bba940bea5c00b9953e9", "sha256": "b2e9381cab0207789d20eb1cfa5b607d78e8bb13c861341fbd767ca2c0154401" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7.12.zip", "has_sig": false, "md5_digest": "760fcf282369bba940bea5c00b9953e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 775915, "upload_time": "2013-06-20T17:11:44", "url": "https://files.pythonhosted.org/packages/37/77/c930f5cd86985ac8ffdc0fd2c3c11d0f5158d75b2b20f37f4e58539afcb4/Products.PloneFormGen-1.7.12.zip" } ], "1.7.14": [ { "comment_text": "", "digests": { "md5": "ad4f1345074f9076d8b0212769b91ff4", "sha256": "1a4132c8edb7b261661656b6408f64d6a027cc364edfc2aaa914402e1cf21664" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7.14.zip", "has_sig": false, "md5_digest": "ad4f1345074f9076d8b0212769b91ff4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 609143, "upload_time": "2014-01-26T19:35:53", "url": "https://files.pythonhosted.org/packages/c1/eb/5e656266ac617aac37814e0a383b81e9a4fde2a24aea395a3f17f3b983c4/Products.PloneFormGen-1.7.14.zip" } ], "1.7.15": [ { "comment_text": "", "digests": { "md5": "0150e441ac811ff146ceda917d933406", "sha256": "575030e8ad4b852770d1c708b050a36be72e1f71651bebac6515a87c8a1de5e9" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7.15.zip", "has_sig": false, "md5_digest": "0150e441ac811ff146ceda917d933406", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 613397, "upload_time": "2014-07-25T22:13:49", "url": "https://files.pythonhosted.org/packages/44/85/4c824c0edf04eb5655c4255eb6ef22743868d2033b9829b8f279b1808371/Products.PloneFormGen-1.7.15.zip" } ], "1.7.16": [ { "comment_text": "", "digests": { "md5": "5d5df68f103ae1262d77999b7807b8f0", "sha256": "261e21085b5dee43f4d0ba8d50bef51362cd4c4ee0ffab60c3f73a90a18a6e18" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7.16.zip", "has_sig": false, "md5_digest": "5d5df68f103ae1262d77999b7807b8f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 614459, "upload_time": "2014-09-26T18:18:35", "url": "https://files.pythonhosted.org/packages/7f/ff/3c5899a94470bcdc3be06b657e0e242aff902883acd722b97a7b5f0cd4f9/Products.PloneFormGen-1.7.16.zip" } ], "1.7.17": [ { "comment_text": "", "digests": { "md5": "20b588926ddff54d3c0456ec15b7686a", "sha256": "0fca1a9a9f235f55341fc1640ace7b19497192f797e73856d85aef0d67b2af3e" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7.17.zip", "has_sig": false, "md5_digest": "20b588926ddff54d3c0456ec15b7686a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 612500, "upload_time": "2015-06-15T21:49:42", "url": "https://files.pythonhosted.org/packages/38/60/9c5d7da14451608b1cf95c94600c87bbf2bee9bc6a3d96f7fea962376775/Products.PloneFormGen-1.7.17.zip" } ], "1.7.18": [ { "comment_text": "", "digests": { "md5": "5bdb594169d2c4f0cf332049fd159a69", "sha256": "bf515a3c1fe136cf9a9a74b8d128f56dd7fb7d06874f8468d2b12591d6f9d1e5" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7.18.zip", "has_sig": false, "md5_digest": "5bdb594169d2c4f0cf332049fd159a69", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 724214, "upload_time": "2016-05-03T09:51:04", "url": "https://files.pythonhosted.org/packages/fd/12/a1dcca7ab2ffa55cee122813b600e75e89f67fad1924b80a83052274c62b/Products.PloneFormGen-1.7.18.zip" } ], "1.7.19": [ { "comment_text": "", "digests": { "md5": "abd98d7f3e483b9908a1fa295556e925", "sha256": "dafcc6af03016e853a617662f659a7d9f24f57a0f1b5ff96b4e664d93427dd99" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7.19.zip", "has_sig": false, "md5_digest": "abd98d7f3e483b9908a1fa295556e925", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 779548, "upload_time": "2016-05-01T17:39:45", "url": "https://files.pythonhosted.org/packages/95/2a/97c914c69411bb825c0f2578024e866cd45cf3d307a49001f09dfdea7b35/Products.PloneFormGen-1.7.19.zip" } ], "1.7.2": [ { "comment_text": "", "digests": { "md5": "81685842f243c7a6642aad1aeca7938d", "sha256": "6bceb5d9981f0be4caca837ddc5d442c5b3d9ccb6f90b408656c1a67b051ea59" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7.2.zip", "has_sig": false, "md5_digest": "81685842f243c7a6642aad1aeca7938d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 765899, "upload_time": "2012-08-16T21:30:05", "url": "https://files.pythonhosted.org/packages/47/a2/e3829af8da9ff8393dc46c0e9a26b26f467bbf82172d6f8417041827d291/Products.PloneFormGen-1.7.2.zip" } ], "1.7.20": [ { "comment_text": "", "digests": { "md5": "ca301eb4ed090238fe56620a4c56311e", "sha256": "5f484b11d496548d271d0648f62fa3ba15a130c95cbabcd5765d4780f257ad8d" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7.20.zip", "has_sig": false, "md5_digest": "ca301eb4ed090238fe56620a4c56311e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 617431, "upload_time": "2016-11-22T19:48:12", "url": "https://files.pythonhosted.org/packages/bb/26/4325fa85de608bd791b61b94e4f30ddd7d5e9119946a416fae846d7e760f/Products.PloneFormGen-1.7.20.zip" } ], "1.7.21": [ { "comment_text": "", "digests": { "md5": "a120705243a34fd032b92d7b0f286e82", "sha256": "9f2b7c7b6dd58a011e26c8ef7d714dd7259c79fe1106f496f640c45127c0ba6f" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7.21.zip", "has_sig": false, "md5_digest": "a120705243a34fd032b92d7b0f286e82", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 728887, "upload_time": "2016-12-06T14:22:19", "url": "https://files.pythonhosted.org/packages/c2/9c/b80633010a22ae4a2e0fa8da67e103b4ca654250271a9e9cd298ea197f37/Products.PloneFormGen-1.7.21.zip" } ], "1.7.22": [ { "comment_text": "", "digests": { "md5": "100fbb52d3ee5ae153a55bdac20dc367", "sha256": "989c212d40da2d5b9fcf0a0d50563bc37591f72a44b0129befa1ef430b4eb1e5" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7.22.zip", "has_sig": false, "md5_digest": "100fbb52d3ee5ae153a55bdac20dc367", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 723389, "upload_time": "2017-02-09T00:51:34", "url": "https://files.pythonhosted.org/packages/67/76/51e55cce7c7618b9619e8d1de7cc1a09f70ae6cee213506c97f8820d00ac/Products.PloneFormGen-1.7.22.zip" } ], "1.7.23": [ { "comment_text": "", "digests": { "md5": "0224e84af098aed3e0da7e2eb11116eb", "sha256": "7607d64f1036170bf5324d1922c99e01334b999a5a6128be911bcb2ea2b80e78" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7.23.zip", "has_sig": false, "md5_digest": "0224e84af098aed3e0da7e2eb11116eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 723595, "upload_time": "2017-07-08T18:24:13", "url": "https://files.pythonhosted.org/packages/76/ed/e8144ae55f6a398432cb336aed3bb82a1b00c9d2cc0e940f2ff1d6096caa/Products.PloneFormGen-1.7.23.zip" } ], "1.7.24": [ { "comment_text": "", "digests": { "md5": "470fb203aa3d1332df8d031c397dd747", "sha256": "03422219f48d0dd62d6c2ee5318a7a06722a2f34fa8d58975b646b83192e398c" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7.24.zip", "has_sig": false, "md5_digest": "470fb203aa3d1332df8d031c397dd747", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 723830, "upload_time": "2018-03-06T16:15:30", "url": "https://files.pythonhosted.org/packages/c0/e3/89fd6d333cf363039ad75932f8a14d6dcdce136300200cb6e16701c84695/Products.PloneFormGen-1.7.24.zip" } ], "1.7.25": [ { "comment_text": "", "digests": { "md5": "bbaa3e530bdcc143da3cc270d9bfd451", "sha256": "2a89a664f9c91d16ee2ff8d1f1d24ddbe09291f36f10b7dc79e727bb0c5e9eab" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7.25.zip", "has_sig": false, "md5_digest": "bbaa3e530bdcc143da3cc270d9bfd451", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 724417, "upload_time": "2018-12-17T21:53:23", "url": "https://files.pythonhosted.org/packages/c9/c3/8fd4793fa4bacc16f2fe9416f0c69e70a4a221e693bb1ffa63ab27a091b9/Products.PloneFormGen-1.7.25.zip" } ], "1.7.3": [ { "comment_text": "", "digests": { "md5": "d16393a3091b07854b09d95afa2c495f", "sha256": "1c139a84f495a6e544f602598ef2b090466fe66bebcdb4176528524f0547570f" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7.3.zip", "has_sig": false, "md5_digest": "d16393a3091b07854b09d95afa2c495f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 675348, "upload_time": "2012-10-23T22:33:00", "url": "https://files.pythonhosted.org/packages/1d/44/f6ce95f7945ea32f35d907b0634ec8e9becd397a849a354ec7dbfc512d94/Products.PloneFormGen-1.7.3.zip" } ], "1.7.4": [ { "comment_text": "", "digests": { "md5": "3a757e0e24bafc6e699a9134ee5c1fc7", "sha256": "5d7300ec7c88856c81112a1eaf1dc7f603e17f3910b7a6a1e2b31d903fb03d97" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7.4.zip", "has_sig": false, "md5_digest": "3a757e0e24bafc6e699a9134ee5c1fc7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 759633, "upload_time": "2012-11-04T23:37:54", "url": "https://files.pythonhosted.org/packages/96/82/27dd193ed16de3a4a81c146a297cfe79b686589604bca894283ec0e6b8bd/Products.PloneFormGen-1.7.4.zip" } ], "1.7.5": [ { "comment_text": "", "digests": { "md5": "813a171a8160c1266c3ed4e4ce8a5575", "sha256": "531ac47d9a354b5a517b9434a408ea5676c7200168da70f7be400481bd81031e" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7.5.zip", "has_sig": false, "md5_digest": "813a171a8160c1266c3ed4e4ce8a5575", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 777684, "upload_time": "2012-11-30T18:49:32", "url": "https://files.pythonhosted.org/packages/4a/6b/2ddae585eddfb835c7ff30c867d27b57872b3a87e0389471bb57cc5de5ae/Products.PloneFormGen-1.7.5.zip" } ], "1.7.6": [ { "comment_text": "", "digests": { "md5": "e55e99c564b20a2254fe90198b51a745", "sha256": "97f9e952b7e3b2d4847322ce26fb514e7f468f79405c3b8840bed7dcccbd099c" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7.6.zip", "has_sig": false, "md5_digest": "e55e99c564b20a2254fe90198b51a745", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 602128, "upload_time": "2012-12-06T18:27:22", "url": "https://files.pythonhosted.org/packages/03/3d/11c8f0f1fe01416c612f50b1f0e85eedf46f93465b2400d6974f0aab8cf8/Products.PloneFormGen-1.7.6.zip" } ], "1.7.7": [ { "comment_text": "", "digests": { "md5": "33074a00a06725fed9d662b69040d7f8", "sha256": "2a6aa093971c3953963142cd6c774cf0b8e12e267731d84a47c7e53d925436b1" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7.7.zip", "has_sig": false, "md5_digest": "33074a00a06725fed9d662b69040d7f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 765019, "upload_time": "2013-03-18T15:26:37", "url": "https://files.pythonhosted.org/packages/82/67/f756342887b667b17d85bf03626209bf60d78de703d2808a07d223def389/Products.PloneFormGen-1.7.7.zip" } ], "1.7.8": [ { "comment_text": "", "digests": { "md5": "944e760c8b7fe5e4ef975da52222fbd1", "sha256": "983290dabd70634fea2b774338fb3d79a212d526dd5923968554b3e1114dac2b" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7.8.zip", "has_sig": false, "md5_digest": "944e760c8b7fe5e4ef975da52222fbd1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 602365, "upload_time": "2013-04-10T22:21:41", "url": "https://files.pythonhosted.org/packages/d2/03/22b0fec8ee59d5d2a8ceb70f00826a6915403e2578eed27e0b418da91bee/Products.PloneFormGen-1.7.8.zip" } ], "1.7.9": [ { "comment_text": "", "digests": { "md5": "007169d5ee49fc284f81572fdc9fbd5c", "sha256": "3699107908e43dae42a3c55e3b62bf1f1a24e0f0142acfef1f03b36e947d8cf7" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7.9.zip", "has_sig": false, "md5_digest": "007169d5ee49fc284f81572fdc9fbd5c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 609650, "upload_time": "2013-05-29T16:35:12", "url": "https://files.pythonhosted.org/packages/14/53/06653b9cc454fba0f549db598bad74e2e61f6a362d8943b40cfe59e273ed/Products.PloneFormGen-1.7.9.zip" } ], "1.7a1": [ { "comment_text": "", "digests": { "md5": "2d53668e550e0d1ed36ff404b6351b62", "sha256": "c92f54c99cbed70587e8753c1c9ebd538ad0e2ddff04fbd672291f1ba1d917fb" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7a1.zip", "has_sig": false, "md5_digest": "2d53668e550e0d1ed36ff404b6351b62", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 511429, "upload_time": "2010-12-28T19:40:59", "url": "https://files.pythonhosted.org/packages/7f/2b/e2001dbe5de092cfc76e5464d18c39f37078a43039557271af33893d5ab4/Products.PloneFormGen-1.7a1.zip" } ], "1.7a2": [ { "comment_text": "", "digests": { "md5": "217a63c877bb2130fafd0df097a064f7", "sha256": "6ffcc5dafaf0c0e3eb4563901d33e39bfd413c3ca92b1e107f0fd1d53bbab45e" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7a2.zip", "has_sig": false, "md5_digest": "217a63c877bb2130fafd0df097a064f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 511513, "upload_time": "2011-03-28T16:52:56", "url": "https://files.pythonhosted.org/packages/32/bd/c429868ae0cd8cce217388b46e43f464aae4cf83cd73da05db272585c424/Products.PloneFormGen-1.7a2.zip" } ], "1.7b1": [ { "comment_text": "", "digests": { "md5": "d45275a96fedf377c8ec4b6b58ebe8de", "sha256": "d91760a6fce3df72dbfa172fbb88087694bbd915700d6581a475e017d59894f4" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7b1.zip", "has_sig": false, "md5_digest": "d45275a96fedf377c8ec4b6b58ebe8de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 513393, "upload_time": "2011-05-21T19:33:15", "url": "https://files.pythonhosted.org/packages/a0/82/4773f46635484745f421609f1ec280e54d58314c0e20fa2072e4c8a2037d/Products.PloneFormGen-1.7b1.zip" } ], "1.7b2": [ { "comment_text": "", "digests": { "md5": "2136c303ea803c13907a9adad765a6d1", "sha256": "e606fcd50bc5a1cf5de1c2dd1da1f293d33edc5c8dffc25b85e92c296f670e82" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7b2.zip", "has_sig": false, "md5_digest": "2136c303ea803c13907a9adad765a6d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 514463, "upload_time": "2011-06-06T01:13:14", "url": "https://files.pythonhosted.org/packages/70/0e/002d0f5543272e09d6c49ff63b7562c8010534b98447665dba2bc08c52eb/Products.PloneFormGen-1.7b2.zip" } ], "1.7b3": [ { "comment_text": "", "digests": { "md5": "be5cebb0f2e643a16a8518822da7a727", "sha256": "d1fc0f267d8bb82d64f7afb0c647dd2eb9949f3b33d45b36c199d5b7055a8736" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7b3.zip", "has_sig": false, "md5_digest": "be5cebb0f2e643a16a8518822da7a727", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 518997, "upload_time": "2011-06-15T02:57:45", "url": "https://files.pythonhosted.org/packages/cf/f3/14cf0fb0c82ecd8a15ecb986a23b008ed288f3923b47fcc1fcfd83dc9d80/Products.PloneFormGen-1.7b3.zip" } ], "1.7b4": [ { "comment_text": "", "digests": { "md5": "8b13d35c6585afbaf56a5b165d2a77bb", "sha256": "54d85bb72d4999e7b315ca6eaefbf7f3bb7aee1402e97ab66229271fb3734da0" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7b4.zip", "has_sig": false, "md5_digest": "8b13d35c6585afbaf56a5b165d2a77bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 519087, "upload_time": "2011-06-16T23:59:36", "url": "https://files.pythonhosted.org/packages/65/a4/596f9e2b1ae4dc372fee1a7275c2b893466e69b2ae5e85dbe2fae570d694/Products.PloneFormGen-1.7b4.zip" } ], "1.7b5": [ { "comment_text": "", "digests": { "md5": "ff42fbdfe556fda1d466d942261bd76d", "sha256": "de1f46c919ff4b657793b2f53d8903130980213af3ce50ae270ab4bab9fa9c3c" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7b5.zip", "has_sig": false, "md5_digest": "ff42fbdfe556fda1d466d942261bd76d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 519660, "upload_time": "2011-07-04T02:03:17", "url": "https://files.pythonhosted.org/packages/56/8c/dccd18abbb01a2e75218aa68feed1b5504eaa9ced94d4ac014362d13eb40/Products.PloneFormGen-1.7b5.zip" } ], "1.7b6": [ { "comment_text": "", "digests": { "md5": "e49ba71569f9c5e8266154dd0c1ce2ac", "sha256": "fcf3f8132dbb243cf9889ebd5a8ba5308fef9c2d893c54895948355cba6d4c6a" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7b6.zip", "has_sig": false, "md5_digest": "e49ba71569f9c5e8266154dd0c1ce2ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 530118, "upload_time": "2011-10-17T22:58:33", "url": "https://files.pythonhosted.org/packages/6b/d1/390de3a44a479a2a78a2e1b246237c69a62356474ab1fcf8de819d965e64/Products.PloneFormGen-1.7b6.zip" } ], "1.7rc1": [ { "comment_text": "", "digests": { "md5": "e6cd7c14587c3d87a995c353db5274d9", "sha256": "2ced8cf7b4c9403ea045697da98802625dc43d45ec89e70f28a865f75eb7e54f" }, "downloads": -1, "filename": "Products.PloneFormGen-1.7rc1.zip", "has_sig": false, "md5_digest": "e6cd7c14587c3d87a995c353db5274d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 596879, "upload_time": "2011-11-09T00:09:21", "url": "https://files.pythonhosted.org/packages/3e/7a/ba4bc79aace0af6dcfcb47ff2e521a273207fa25a0c6e11854db7c90cf8a/Products.PloneFormGen-1.7rc1.zip" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "51f7a761eaa2c7b4257dc83bad036f3b", "sha256": "5a7033f5276f550ea99fce905929883e4df30338b307e23977a49456e9ea7263" }, "downloads": -1, "filename": "Products.PloneFormGen-1.8.0.zip", "has_sig": false, "md5_digest": "51f7a761eaa2c7b4257dc83bad036f3b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 674931, "upload_time": "2015-10-01T02:49:36", "url": "https://files.pythonhosted.org/packages/72/9f/8a1f14337d19e8cb0ac566ed4f1609e3f58d5f10251cd0d768978da7bc0e/Products.PloneFormGen-1.8.0.zip" } ], "1.8.0.alpha1": [ { "comment_text": "", "digests": { "md5": "d9b78ea91d7890a036da13c1a2e8cb4b", "sha256": "a230a6cfe270e7881c4195987b558f3ab78da235b9e7c582766053a811f7567f" }, "downloads": -1, "filename": "Products.PloneFormGen-1.8.0.alpha1.zip", "has_sig": false, "md5_digest": "d9b78ea91d7890a036da13c1a2e8cb4b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 728563, "upload_time": "2015-06-29T18:04:50", "url": "https://files.pythonhosted.org/packages/95/b4/eb4ecaeb5f1af6ea625bfb6245b70dc0c36f71de65d091d3972b53891998/Products.PloneFormGen-1.8.0.alpha1.zip" } ], "1.8.0.beta1": [ { "comment_text": "", "digests": { "md5": "b3272a60c3163833cf5cb074ad50612e", "sha256": "c6bf1393ceb126fb0ed969789666986f13496ad3d98069d70edb74c4c0b351da" }, "downloads": -1, "filename": "Products.PloneFormGen-1.8.0.beta1.zip", "has_sig": false, "md5_digest": "b3272a60c3163833cf5cb074ad50612e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 725645, "upload_time": "2015-07-13T23:09:22", "url": "https://files.pythonhosted.org/packages/a2/e5/2b0fda68132745843f160ceecd010c2589651c28e405fa391b45f190540e/Products.PloneFormGen-1.8.0.beta1.zip" } ], "1.8.0.beta2": [ { "comment_text": "", "digests": { "md5": "81896d509fdb70c66fd4efde72a3170c", "sha256": "27d1f11740aa043335c5a5f15cd8aafe93b32fa5d07516a4bbb934579c2c523a" }, "downloads": -1, "filename": "Products.PloneFormGen-1.8.0.beta2.zip", "has_sig": false, "md5_digest": "81896d509fdb70c66fd4efde72a3170c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 680271, "upload_time": "2015-07-15T22:59:15", "url": "https://files.pythonhosted.org/packages/24/2f/416920a12a5ae54da59f665f456749d500662bec3a896927a9ddf9d00a6f/Products.PloneFormGen-1.8.0.beta2.zip" } ], "1.8.0.beta3": [ { "comment_text": "", "digests": { "md5": "55c65f45dbbbe63d679b64d6bd6e231d", "sha256": "e28f67ad51f72056be9fae386f227243f667eaf2cbb350460fabb5d5184ed902" }, "downloads": -1, "filename": "Products.PloneFormGen-1.8.0.beta3.zip", "has_sig": false, "md5_digest": "55c65f45dbbbe63d679b64d6bd6e231d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 680312, "upload_time": "2015-07-20T17:32:51", "url": "https://files.pythonhosted.org/packages/64/b8/39bb420418cfe5c32a2106ec9cae1aa110444847605e696d200ba399a74e/Products.PloneFormGen-1.8.0.beta3.zip" } ], "1.8.0b4": [ { "comment_text": "", "digests": { "md5": "59a746ed95cf087b399f4cf603301b8a", "sha256": "787356349429dd98b2cb60eb4764164e017eeb7c74fa3298bf21118678002dd5" }, "downloads": -1, "filename": "Products.PloneFormGen-1.8.0b4.zip", "has_sig": false, "md5_digest": "59a746ed95cf087b399f4cf603301b8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 675130, "upload_time": "2015-09-09T18:38:01", "url": "https://files.pythonhosted.org/packages/49/d7/852c96bfb9d6199872418aeddb1c7828f18a7757ee75b38ab4455500c47c/Products.PloneFormGen-1.8.0b4.zip" } ], "1.8.1": [ { "comment_text": "", "digests": { "md5": "c32758e4d4992f6be069da29df46886d", "sha256": "1194c96e3f138fbdcf479c60c7f1f5b01c6fefa93c490dcefb750ba37a7c4c81" }, "downloads": -1, "filename": "Products.PloneFormGen-1.8.1.zip", "has_sig": false, "md5_digest": "c32758e4d4992f6be069da29df46886d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 731811, "upload_time": "2016-05-01T17:42:21", "url": "https://files.pythonhosted.org/packages/56/af/de987079a05690bed81ae4dc04bfca4f6ba478bf6b2272618819e9b8d972/Products.PloneFormGen-1.8.1.zip" } ], "1.8.2": [ { "comment_text": "", "digests": { "md5": "9bc7b486cc02ba572a3d7dffcdc38378", "sha256": "ceade792e48d039dbbf0270cb763b67eaca2576c94484e851334ce796ee4475f" }, "downloads": -1, "filename": "Products.PloneFormGen-1.8.2.zip", "has_sig": false, "md5_digest": "9bc7b486cc02ba572a3d7dffcdc38378", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 677385, "upload_time": "2016-11-22T19:31:27", "url": "https://files.pythonhosted.org/packages/7b/db/0a53bbb93c3eed1a4a97a48dddbc79e3e0698a01eb4d0e873fa0ae770a5b/Products.PloneFormGen-1.8.2.zip" } ], "1.8.3": [ { "comment_text": "", "digests": { "md5": "63c204e42d9b67486fa9de550bc6658a", "sha256": "ecb14d1858fb8192cdc79e5a34e30dcd6a7463d81b128ef5d38af363d38a1a87" }, "downloads": -1, "filename": "Products.PloneFormGen-1.8.3.zip", "has_sig": false, "md5_digest": "63c204e42d9b67486fa9de550bc6658a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 677559, "upload_time": "2016-12-06T14:24:55", "url": "https://files.pythonhosted.org/packages/6c/ed/c04b395c6a84077b277b7a390880fb64ac325b14f978c98c95b162ec1982/Products.PloneFormGen-1.8.3.zip" } ], "1.8.4": [ { "comment_text": "", "digests": { "md5": "89ab51d09a2ac8ebbe6a2311b00e9492", "sha256": "6333414dcb6f2384f043f8a67d29ea9331907863b9d1f581a3455955f61cbd75" }, "downloads": -1, "filename": "Products.PloneFormGen-1.8.4.zip", "has_sig": false, "md5_digest": "89ab51d09a2ac8ebbe6a2311b00e9492", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 678613, "upload_time": "2017-07-08T18:29:24", "url": "https://files.pythonhosted.org/packages/63/53/1d2eab6da9fb3179a3d4dc0e47ccc01cbcfffd437847c25e2ca29a526c9e/Products.PloneFormGen-1.8.4.zip" } ], "1.8.5": [ { "comment_text": "", "digests": { "md5": "39535d617b3f95ff6965a92e10d1dce7", "sha256": "23e3472c8afd106d195cd04e279320896ca2cc5eca3be7a35a5eb5885bbe7462" }, "downloads": -1, "filename": "Products.PloneFormGen-1.8.5.zip", "has_sig": false, "md5_digest": "39535d617b3f95ff6965a92e10d1dce7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 679489, "upload_time": "2017-12-20T00:09:07", "url": "https://files.pythonhosted.org/packages/cd/5e/7c04c4251c3e7d3024fd947249be7371ad57e5c5af723e0deb6a168a0b13/Products.PloneFormGen-1.8.5.zip" } ], "1.8.6": [ { "comment_text": "", "digests": { "md5": "ee02d7c164b20341f57b0d91ab6e0816", "sha256": "e3a06d75493f157f0f4e750871a3aa9a22dd739158001c7190090260627cfc61" }, "downloads": -1, "filename": "Products.PloneFormGen-1.8.6.zip", "has_sig": false, "md5_digest": "ee02d7c164b20341f57b0d91ab6e0816", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 694870, "upload_time": "2019-07-29T20:40:28", "url": "https://files.pythonhosted.org/packages/79/70/8b49fa7f2114fbcf6a0bc2c745d801c1ce972e16ff015f105844762ec68e/Products.PloneFormGen-1.8.6.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ee02d7c164b20341f57b0d91ab6e0816", "sha256": "e3a06d75493f157f0f4e750871a3aa9a22dd739158001c7190090260627cfc61" }, "downloads": -1, "filename": "Products.PloneFormGen-1.8.6.zip", "has_sig": false, "md5_digest": "ee02d7c164b20341f57b0d91ab6e0816", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 694870, "upload_time": "2019-07-29T20:40:28", "url": "https://files.pythonhosted.org/packages/79/70/8b49fa7f2114fbcf6a0bc2c745d801c1ce972e16ff015f105844762ec68e/Products.PloneFormGen-1.8.6.zip" } ] }