{ "info": { "author": "Marco Pantaleoni", "author_email": "m.pantaleoni@softwarefabrica.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License (GPL)", "Operating System :: OS Independent", "Programming Language :: Python :: 2.3", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": ".. _topics-overview:\n\n============================\nSoftwarefabrica Django Forms\n============================\n\n.. admonition:: About this document\n\n This document provides an overview of what Softwarefabrica Django Forms is.\n\n.. contents::\n :depth: 3\n\nSee also the `documentation index`_.\n\n.. _`documentation index`: index.html\n\nWhat is this?\n=============\n\nThis is a forms library for `Django`_ projects, which aims at providing increased\nfunctionality and flexibility to the standard `forms library`_ (aka `newforms`).\n\nYour help and feedback is precious. Suggestions and contributions are very much\nappreciated. See below on how you can contribute.\n\nIf you want to actively collaborate and provide code, documentation, tests or\nbug fixes, please feel free to create a new Bazaar branch in Launchpad, and tell\nus about it! See the collaboration_ section for more information.\n\nAnd don't forget to check also our other `Django`_ applications,\n`softwarefabrica.django.utils`_, `softwarefabrica.django.crud`_, and\n`softwarefabrica.django.wiki`_.\n\n.. _`Django`: http://www.djangoproject.com\n.. _`softwarefabrica.django.utils`: http://pypi.python.org/pypi/softwarefabrica.django.utils\n.. _`softwarefabrica.django.forms`: http://pypi.python.org/pypi/softwarefabrica.django.forms\n.. _`softwarefabrica.django.crud`: http://pypi.python.org/pypi/softwarefabrica.django.crud\n.. _`softwarefabrica.django.wiki`: http://pypi.python.org/pypi/softwarefabrica.django.wiki\n.. _`sflib`: http://pypi.python.org/pypi/sflib\n\nFeature overview\n----------------\n\n- a compatible replacement for the standard ``Form`` class, supporting **templated** form output\n- a compatible replacement for the standard ``ModelForm`` class, supporting extended features, like **field ordering**, **advanced widgets**, **templated output**\n- a compatible replacement for ``modelform_factory``, which uses the extended ``ModelForm``\n- a set of extended fields and widgets: \n - compatible replacements for ``DateField`` and ``DateTimeField`` and the associated widgets, using a nice **popup Javascript calendar**\n - a new ``DateRangeField``\n - compatible replacements for ``ModelChoiceField`` and ``ModelMultipleChoiceField`` using a **popup interface** for selecting the related instance/instances\n\n.. _`Django`: http://www.djangoproject.com\n.. _`forms library`: http://docs.djangoproject.com/en/dev/topics/forms/\n\nPre-requisites and installation\n===============================\n\nSee the `installation guide document`_.\n\n.. _`installation guide document`: install.html\n\n.. _collaboration:\n\nHow can I contribute?\n=====================\n\nAs said, your help is precious. We'll warmly appreciate any help you'll want to\ngive. Just using this library is a reward for us, but if you want to become more\nactively involved, you are welcome!\n\nThe project has a `development home page`_ at `LaunchPad`_:\n\n https://launchpad.net/sf-django-forms\n\nThere you can file `bugs`_, suggest `enhancements`_, follow development or ask\nto become an active `team`_ member.\n\nYou can checkout the development branch using `Bazaar`_:\n\n::\n\n bzr branch lp:sf-django-forms\n\nWe'll appreciate very much if you'll want to contribute back any changes. Just\nregister your branch with `LaunchPad`_ and tell us!\n\nSource code can also be browsed `online`_.\n\n.. _`development home page`: https://launchpad.net/sf-django-forms\n.. _`LaunchPad`: http://launchpad.net\n.. _`Bazaar`: http://bazaar-vcs.org/\n.. _`online`: http://bazaar.launchpad.net/~softwarefabrica/sf-django-forms/trunk/changes\n.. _`Softwarefabrica`: https://edge.launchpad.net/softwarefabrica\n.. _`team`: https://launchpad.net/~softwarefabrica\n.. _`bugs`: https://bugs.launchpad.net/sf-django-forms\n.. _`enhancements`: https://bugs.launchpad.net/sf-django-forms\n\n\nContacts\n========\n\nIt's possible to contact the author by e-mail at the following addresses:\n\n m.pantaleoni at softwarefabrica.org\n\n panta at elasticworld.org\n\n marco.pantaleoni at gmail.com\n\n\nLICENSE\n=======\n\nThis software is covered by the GNU General Public License version 2.\nIf you want to use this software in a closed source application, you\nneed to buy a commercial license from the author.\n\nThis open source version is:\n\n Copyright (C) 2007-2008 Marco Pantaleoni. All rights reserved.\n\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License version 2 as\n published by the Free Software Foundation.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n\n\nCHANGES\n-------\n\n2010-03-02 Marco Pantaleoni \n\n * added ExtendedFileWidget.\n\n2010-02-24 Marco Pantaleoni \n\n * added SelectCascadeField and SelectCascadePopupField fields\n (and the corresponding widgets), which implement cascaded-update\n for \"slave\" select fields.\n\n * refactored widgets to use a common WidgetHelper class for\n template-based rendering.\n\n2009-11-10 Marco Pantaleoni \n\n * added html IDs to form rows (with support in the form classes)\n\n2009-10-26 Marco Pantaleoni \n\n * added 'null' and 'include_blank' kwargs to\n\tFormBuilder.FormBuildField().\n\n2009-10-21 Marco Pantaleoni \n\n * integrated sflib.finddata.find_package_data() in setup.py\n\n2009-05-15 Marco Pantaleoni \n\n * softwarefabrica/django/forms/extended.py: added ``BaseForm`` and made\n ``Form`` its descendant (instead of from forms.Form).\n Added FormBuilder.\n\n2009-03-30 Marco Pantaleoni \n\n * softwarefabrica/django/forms/templates/forms/field.html: fixed error\n display in fields template for templated forms.\n\n2009-03-29 Marco Pantaleoni \n\n * softwarefabrica/django/forms/extended.py: global_errors is computed only\n for bound forms (to avoid a spurious call to is_valid()).\n\n2009-03-20 Marco Pantaleoni \n\n * softwarefabrica/django/forms/extended.py: handled and passed to template\n also non-field errors.\n\n2009-03-17 Marco Pantaleoni \n\n * softwarefabrica/django/forms/extended.py fields.py widgets.py: implemented\n workaround for Django bug #9473 involing NullBooleanFields in FormWizard\n or FormPreview.\n\n2009-03-15 Marco Pantaleoni \n\n * softwarefabrica/django/forms/extended.py: handled case where Meta.fields\n is present but None.\n\n2009-03-11 Marco Pantaleoni \n\n * softwarefabrica/django/forms/templates/forms/form.html\n softwarefabrica/django/forms/templates/forms/hiddenfield.html: added\n hidden fields handling.\n\n * softwarefabrica/django/forms/extended.py: if Meta.fields is specified\n in ModelForm, it's also used for the field ordering (by default).\n\n2008-12-19 Marco Pantaleoni \n\n * docs/install.txt: improved installation instructions.\n\n * docs/: fixed some typos.\n\n2008-12-18 Marco Pantaleoni \n\n * fixes to setup.py, .bzrignore and README.txt\n\n * added extensive documentation.\n\n2008-12-16 Marco Pantaleoni \n\n * softwarefabrica/django/forms/fields.py widgets.py: fixed small\n bugs in DateField, DateTimeField, DateWidget, DateTimeWidget.\n\n * softwarefabrica/django/forms/extended.py\n (extended_formfield_cb): 'required' is forced into fields kwargs,\n because in some cases it's not honoured.\n\n2008-12-01 Marco Pantaleoni \n\n * bug fixes.\n\n2008-11-27 Marco Pantaleoni \n\n * Added RelatedItemField, SelectPopupField,\n SelectMultiplePopupField fields and corresponding widgets\n (RelatedItemWidget, SelectPopupWidget, SelectMultiplePopupWidget\n widgets).\n\n2008-11-25 Marco Pantaleoni \n\n * Added extended fields and widgets. Modified form classes to use\n new widgets.\n\n * Fixes, added regression tests.\n\n * Created.", "description_content_type": null, "docs_url": "https://pythonhosted.org/softwarefabrica.django.forms/", "download_url": "http://pypi.python.org/packages/source/s/softwarefabrica.django.forms/softwarefabrica.django.forms-0.9dev-BZR-r47-panta-elasticworld.org-20100302103836-4q6st6r4t667zcr8.tar.gz", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://pypi.python.org/pypi/softwarefabrica.django.forms/", "keywords": "django forms table softwarefabrica", "license": "GNU GPL v2", "maintainer": null, "maintainer_email": null, "name": "softwarefabrica.django.forms", "package_url": "https://pypi.org/project/softwarefabrica.django.forms/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/softwarefabrica.django.forms/", "project_urls": { "Download": "http://pypi.python.org/packages/source/s/softwarefabrica.django.forms/softwarefabrica.django.forms-0.9dev-BZR-r47-panta-elasticworld.org-20100302103836-4q6st6r4t667zcr8.tar.gz", "Homepage": "http://pypi.python.org/pypi/softwarefabrica.django.forms/" }, "release_url": "https://pypi.org/project/softwarefabrica.django.forms/0.9dev-BZR-r47-panta-elasticworld.org-20100302103836-4q6st6r4t667zcr8/", "requires_dist": null, "requires_python": null, "summary": "Extended forms library for django", "version": "0.9dev-BZR-r47-panta-elasticworld.org-20100302103836-4q6st6r4t667zcr8" }, "last_serial": 799814, "releases": { "0.9dev-BZR-r10-panta-elasticworld.org-20081216152624-sz5xilgbk42aqw1n": [ { "comment_text": "", "digests": { "md5": "d56f72ead587dcb872fcadcff0fc2e3d", "sha256": "5deb0204297c63972b49a5fca292cdd50a07f67c22b714169aada507793ed978" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r10_panta_elasticworld.org_20081216152624_sz5xilgbk42aqw1n-py2.4.egg", "has_sig": false, "md5_digest": "d56f72ead587dcb872fcadcff0fc2e3d", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 36356, "upload_time": "2008-12-17T10:57:17", "url": "https://files.pythonhosted.org/packages/2c/4f/3d49b4bf2687716efd61a370f63ad3e4ff86f83e50ebaa68c0be696af292/softwarefabrica.django.forms-0.9dev_BZR_r10_panta_elasticworld.org_20081216152624_sz5xilgbk42aqw1n-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "1cdf5668d257e3c9905fd62c64ab29ae", "sha256": "a196518aa08f779f584aab10acd39bc1c4b56a93399084427d873700e1a802d2" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r10_panta_elasticworld.org_20081216152624_sz5xilgbk42aqw1n-py2.5.egg", "has_sig": false, "md5_digest": "1cdf5668d257e3c9905fd62c64ab29ae", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 43728, "upload_time": "2008-12-16T15:26:42", "url": "https://files.pythonhosted.org/packages/f9/20/1433036baac67bc061700636432cfeb4968bc19361886d9debbc71cffeab/softwarefabrica.django.forms-0.9dev_BZR_r10_panta_elasticworld.org_20081216152624_sz5xilgbk42aqw1n-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "cb157342b953720205a0bfa124b45d94", "sha256": "240e294c2ed6a5d7c3d6da85017564407faa7ab37e645f1137de026fb24c1e6f" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r10_panta_elasticworld.org_20081216152624_sz5xilgbk42aqw1n-py2.6.egg", "has_sig": false, "md5_digest": "cb157342b953720205a0bfa124b45d94", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 36005, "upload_time": "2008-12-17T15:24:51", "url": "https://files.pythonhosted.org/packages/3d/d4/c5820c10d19189905e4baaae0490b5770345bffcda2976c9ecde5d99d3f4/softwarefabrica.django.forms-0.9dev_BZR_r10_panta_elasticworld.org_20081216152624_sz5xilgbk42aqw1n-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "a5f39dc1c600b0083f22db270d2b3294", "sha256": "0feb0c2d9056790d56bc47223889c96822f56d38b69213a009d4cd11618bbe7c" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev-BZR-r10-panta-elasticworld.org-20081216152624-sz5xilgbk42aqw1n.tar.gz", "has_sig": false, "md5_digest": "a5f39dc1c600b0083f22db270d2b3294", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 415240, "upload_time": "2008-12-16T15:26:41", "url": "https://files.pythonhosted.org/packages/b2/64/d5f20e20e75f8b8060990e21f6316a93f9c0a361fbf76e8d8f17cbdca55b/softwarefabrica.django.forms-0.9dev-BZR-r10-panta-elasticworld.org-20081216152624-sz5xilgbk42aqw1n.tar.gz" } ], "0.9dev-BZR-r11-panta-elasticworld.org-20081218144309-va357v4g5xnr7y92": [ { "comment_text": "", "digests": { "md5": "62a40b668363ea64074b3ec0b4f4d9c3", "sha256": "fa89ecf2a1b064ba839b0d299fd180d15f775486fd2e12b45c6d049a1ebedaf3" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r11_panta_elasticworld.org_20081218144309_va357v4g5xnr7y92-py2.4.egg", "has_sig": false, "md5_digest": "62a40b668363ea64074b3ec0b4f4d9c3", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 36374, "upload_time": "2008-12-18T15:13:01", "url": "https://files.pythonhosted.org/packages/dc/71/839bce13179d31bbf4c2c8707112ac82880b91dd664d4020ebc3c1d6d28f/softwarefabrica.django.forms-0.9dev_BZR_r11_panta_elasticworld.org_20081218144309_va357v4g5xnr7y92-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "1786d254e6625dfa5fc4c059d5f5cec2", "sha256": "0c8a724947e5b0d2142dc607224e405c1726cd8402a7a105ac689b9210c1bc51" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r11_panta_elasticworld.org_20081218144309_va357v4g5xnr7y92-py2.5.egg", "has_sig": false, "md5_digest": "1786d254e6625dfa5fc4c059d5f5cec2", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 43796, "upload_time": "2008-12-18T15:12:31", "url": "https://files.pythonhosted.org/packages/ac/da/81188b46c9df01ccd667f3528adfbd459a32de94fb33de41ee6f1a40afd0/softwarefabrica.django.forms-0.9dev_BZR_r11_panta_elasticworld.org_20081218144309_va357v4g5xnr7y92-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "47a48e213f5ea63575eb00fbe175b9e8", "sha256": "ee8dc3c682d6af778ed9ddce7bd4abd92451a092eba28870622049af32c55b65" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r11_panta_elasticworld.org_20081218144309_va357v4g5xnr7y92-py2.6.egg", "has_sig": false, "md5_digest": "47a48e213f5ea63575eb00fbe175b9e8", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 36026, "upload_time": "2008-12-18T15:13:32", "url": "https://files.pythonhosted.org/packages/39/25/08001f0f8db7746dcbc47eeff0ab87cef88211113ee014f0a90a8763be12/softwarefabrica.django.forms-0.9dev_BZR_r11_panta_elasticworld.org_20081218144309_va357v4g5xnr7y92-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "dee3d86113a020381127ab2643ac8993", "sha256": "0dd9668bffc0c228b9ced279f790fcb5644c14fc7bd8baefb02408b1d0d8f40d" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev-BZR-r11-panta-elasticworld.org-20081218144309-va357v4g5xnr7y92.tar.gz", "has_sig": false, "md5_digest": "dee3d86113a020381127ab2643ac8993", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 426412, "upload_time": "2008-12-18T15:12:30", "url": "https://files.pythonhosted.org/packages/96/1a/8e1d4d42b375bd000219f3b3fdea1664f536ecae75569ee7f1212ffce769/softwarefabrica.django.forms-0.9dev-BZR-r11-panta-elasticworld.org-20081218144309-va357v4g5xnr7y92.tar.gz" } ], "0.9dev-BZR-r12-panta-elasticworld.org-20081218151859-iaru5c35s5q8sz9t": [ { "comment_text": "", "digests": { "md5": "603f953d5f9ee16c0359427c8e28257c", "sha256": "22d2815eb74b65a00ee0ae10b87a8f2ae7885a80655ef73ff28392363c57b872" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r12_panta_elasticworld.org_20081218151859_iaru5c35s5q8sz9t-py2.4.egg", "has_sig": false, "md5_digest": "603f953d5f9ee16c0359427c8e28257c", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 36616, "upload_time": "2008-12-18T15:19:08", "url": "https://files.pythonhosted.org/packages/b5/96/e8c6a551ed7fa8b952a30a3fddec1f7fd930a90bdc29b52a4af02be0aa4d/softwarefabrica.django.forms-0.9dev_BZR_r12_panta_elasticworld.org_20081218151859_iaru5c35s5q8sz9t-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "08c1a005461c865fcd725d124913189f", "sha256": "e5d76123219d725b556283d0275675d64aaf65f9539328aa3d570de1361c8938" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r12_panta_elasticworld.org_20081218151859_iaru5c35s5q8sz9t-py2.5.egg", "has_sig": false, "md5_digest": "08c1a005461c865fcd725d124913189f", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 44039, "upload_time": "2008-12-18T15:19:06", "url": "https://files.pythonhosted.org/packages/4a/44/be28b4183dae047794dd97a2b1da474495686eccdf055cc1145e4097288d/softwarefabrica.django.forms-0.9dev_BZR_r12_panta_elasticworld.org_20081218151859_iaru5c35s5q8sz9t-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "541c06c2858f36f67068f753b5637443", "sha256": "ff0cfda7227984325f74bb3ed659c04fda7351b0069d948479935956893daa52" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r12_panta_elasticworld.org_20081218151859_iaru5c35s5q8sz9t-py2.6.egg", "has_sig": false, "md5_digest": "541c06c2858f36f67068f753b5637443", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 36267, "upload_time": "2008-12-18T15:19:14", "url": "https://files.pythonhosted.org/packages/1e/1f/324e25a1af4cf4e835626df6703dd71f0c42e3f1614489a5d4fc81284c7a/softwarefabrica.django.forms-0.9dev_BZR_r12_panta_elasticworld.org_20081218151859_iaru5c35s5q8sz9t-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "5f7db7105482fc751d01669ad869be06", "sha256": "95bc20759724aaf3448cf57da1946f1cc079053407aedd2f01b9c0f31973f52c" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev-BZR-r12-panta-elasticworld.org-20081218151859-iaru5c35s5q8sz9t.tar.gz", "has_sig": false, "md5_digest": "5f7db7105482fc751d01669ad869be06", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 425310, "upload_time": "2008-12-18T15:19:05", "url": "https://files.pythonhosted.org/packages/b3/5f/41c37f1225930ea70b73a745a9bce93dcdadfedcbfa3fb31aa01985b0ee5/softwarefabrica.django.forms-0.9dev-BZR-r12-panta-elasticworld.org-20081218151859-iaru5c35s5q8sz9t.tar.gz" } ], "0.9dev-BZR-r15-panta-elasticworld.org-20081219124947-6izi6h22ttmjaaxm": [ { "comment_text": "", "digests": { "md5": "4a67e977160280b8834ae92382124763", "sha256": "50eab2b31cfb7ec1d6bd57b12fe08fd6ee88b239a8477a46d134bfab9ca5bfa1" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r15_panta_elasticworld.org_20081219124947_6izi6h22ttmjaaxm-py2.4.egg", "has_sig": false, "md5_digest": "4a67e977160280b8834ae92382124763", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 36664, "upload_time": "2008-12-19T12:52:40", "url": "https://files.pythonhosted.org/packages/73/38/3bce7fd3f828ce97043225e55c887174214a5304f63519a6256ca437c745/softwarefabrica.django.forms-0.9dev_BZR_r15_panta_elasticworld.org_20081219124947_6izi6h22ttmjaaxm-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "319d4eec6b63c870876cba27a3a639a2", "sha256": "e0142d04683e22d0c63cd3f40b423d0cd4099f762f4e656120a04ad305e1007b" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r15_panta_elasticworld.org_20081219124947_6izi6h22ttmjaaxm-py2.5.egg", "has_sig": false, "md5_digest": "319d4eec6b63c870876cba27a3a639a2", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 44095, "upload_time": "2008-12-19T12:52:39", "url": "https://files.pythonhosted.org/packages/95/43/e683c664526d153e88bbf1144d481929d9b5776eacd906a27bf24173be85/softwarefabrica.django.forms-0.9dev_BZR_r15_panta_elasticworld.org_20081219124947_6izi6h22ttmjaaxm-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "eac2771d54625bd4d7d9fb6c5736d9ed", "sha256": "e7768c2708c12af7412d939c959c04dacaf3108be2303d84b309c08830564f3c" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r15_panta_elasticworld.org_20081219124947_6izi6h22ttmjaaxm-py2.6.egg", "has_sig": false, "md5_digest": "eac2771d54625bd4d7d9fb6c5736d9ed", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 36314, "upload_time": "2008-12-19T12:52:45", "url": "https://files.pythonhosted.org/packages/37/63/8616c9e51b4c4d2ee081dd0ff7c3635fc411b37b29b9bc8a1a52e5281558/softwarefabrica.django.forms-0.9dev_BZR_r15_panta_elasticworld.org_20081219124947_6izi6h22ttmjaaxm-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "4ed2e24464322892ed3594718c88651e", "sha256": "eff24bab2948beb53e23f30eef6ec0774a9d21c6be32048fe5a492a6888e5129" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev-BZR-r15-panta-elasticworld.org-20081219124947-6izi6h22ttmjaaxm.tar.gz", "has_sig": false, "md5_digest": "4ed2e24464322892ed3594718c88651e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 426219, "upload_time": "2008-12-19T12:52:38", "url": "https://files.pythonhosted.org/packages/61/47/af85ecd47975f53c09cf1cb52f62a91b8e9d12c0ed2234f2233781127fbb/softwarefabrica.django.forms-0.9dev-BZR-r15-panta-elasticworld.org-20081219124947-6izi6h22ttmjaaxm.tar.gz" } ], "0.9dev-BZR-r16-panta-elasticworld.org-20090108095331-cbbch6rqni2vifaa": [ { "comment_text": "", "digests": { "md5": "87bb8e49bfcba0263b6f64513a370d7d", "sha256": "e978fa01a9d84e64435c16aef922496a0d479187df5083432af0931185350714" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r16_panta_elasticworld.org_20090108095331_cbbch6rqni2vifaa-py2.4.egg", "has_sig": false, "md5_digest": "87bb8e49bfcba0263b6f64513a370d7d", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 36661, "upload_time": "2009-02-26T11:37:09", "url": "https://files.pythonhosted.org/packages/4f/5c/7307fc37b40804eb3b7332a31128c22960cde34bb1a403f46fdea5977139/softwarefabrica.django.forms-0.9dev_BZR_r16_panta_elasticworld.org_20090108095331_cbbch6rqni2vifaa-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "0ac68d5903e1a3daaa76d1a3f59aba69", "sha256": "aae2bb0b82fb8a2bbcd5df696b423123edb10329ace3686517f4e645e0e3042f" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r16_panta_elasticworld.org_20090108095331_cbbch6rqni2vifaa-py2.5.egg", "has_sig": false, "md5_digest": "0ac68d5903e1a3daaa76d1a3f59aba69", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 44097, "upload_time": "2009-02-26T11:37:07", "url": "https://files.pythonhosted.org/packages/95/04/81e16212b03f70489166afc70b0c1b1059b3e4ed5bb56d2808cc8f594356/softwarefabrica.django.forms-0.9dev_BZR_r16_panta_elasticworld.org_20090108095331_cbbch6rqni2vifaa-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "6cb6b69d65192b9b39ed2dea4a2fc968", "sha256": "2d3e98253fb0e33ff96664ff98fb91d834ec9086c0b8f282118f60527069fa01" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r16_panta_elasticworld.org_20090108095331_cbbch6rqni2vifaa-py2.6.egg", "has_sig": false, "md5_digest": "6cb6b69d65192b9b39ed2dea4a2fc968", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 36311, "upload_time": "2009-02-26T11:37:16", "url": "https://files.pythonhosted.org/packages/9f/b2/a2750c7cf7ff32d3d4ad87505254dbd22e3af64fcab115f2b3c458b097a9/softwarefabrica.django.forms-0.9dev_BZR_r16_panta_elasticworld.org_20090108095331_cbbch6rqni2vifaa-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "ea117ffebf520c705209bf339bf70e0f", "sha256": "2f63299334b1eb6f9be1ca39226a746a765d76e1caef5913e0302e3c18df345b" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev-BZR-r16-panta-elasticworld.org-20090108095331-cbbch6rqni2vifaa.tar.gz", "has_sig": false, "md5_digest": "ea117ffebf520c705209bf339bf70e0f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 426461, "upload_time": "2009-02-26T11:37:04", "url": "https://files.pythonhosted.org/packages/e2/70/2355a67376ae8489de190b706bcd8cf96382c1f2b98ca059d88484125437/softwarefabrica.django.forms-0.9dev-BZR-r16-panta-elasticworld.org-20090108095331-cbbch6rqni2vifaa.tar.gz" } ], "0.9dev-BZR-r22-panta-elasticworld.org-20090315100838-qmi482ez1kn0xn97": [ { "comment_text": "", "digests": { "md5": "4bda2ed8f73d8b278ab698af19132c95", "sha256": "bda2f07378ad14f4425898ac436e80c1c130e5ee7cc0f0ac2cfb6ea38a4bc3fd" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r22_panta_elasticworld.org_20090315100838_qmi482ez1kn0xn97-py2.4.egg", "has_sig": false, "md5_digest": "4bda2ed8f73d8b278ab698af19132c95", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 37572, "upload_time": "2009-03-16T15:45:26", "url": "https://files.pythonhosted.org/packages/7d/ed/dcf8bcff7207a5e5f5963244180053b116dcba3c627c121bbc7e58716ec0/softwarefabrica.django.forms-0.9dev_BZR_r22_panta_elasticworld.org_20090315100838_qmi482ez1kn0xn97-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "10315a844b72dd8e68097bafc6f3af10", "sha256": "80777d69a03fa727df14c97dc266834aaa540d2543edfe66439f6a1bd146fb49" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r22_panta_elasticworld.org_20090315100838_qmi482ez1kn0xn97-py2.5.egg", "has_sig": false, "md5_digest": "10315a844b72dd8e68097bafc6f3af10", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 45310, "upload_time": "2009-03-16T15:45:23", "url": "https://files.pythonhosted.org/packages/89/6a/bf8627823ad66defd01b86a4c19ff5ad6b0abcdbd8c34ed9ea55f4446126/softwarefabrica.django.forms-0.9dev_BZR_r22_panta_elasticworld.org_20090315100838_qmi482ez1kn0xn97-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "b714e10680097df032001dc871ac3901", "sha256": "b225b32b392ff8e821c49c481b36294199aef08425940401960629a2bb2ae2cf" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r22_panta_elasticworld.org_20090315100838_qmi482ez1kn0xn97-py2.6.egg", "has_sig": false, "md5_digest": "b714e10680097df032001dc871ac3901", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 37235, "upload_time": "2009-03-16T15:45:33", "url": "https://files.pythonhosted.org/packages/13/1e/5f707f0baaa50a10e0d05afc29afe9b3c7688af5fe88453097b32d78b137/softwarefabrica.django.forms-0.9dev_BZR_r22_panta_elasticworld.org_20090315100838_qmi482ez1kn0xn97-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "94833485254499b5e0179bddda81aea5", "sha256": "c63f4da3f22a50ef2b85ff94c3f561d4ba81e34e4337ddd0b0cab3c1c7f729de" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev-BZR-r22-panta-elasticworld.org-20090315100838-qmi482ez1kn0xn97.tar.gz", "has_sig": false, "md5_digest": "94833485254499b5e0179bddda81aea5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 427532, "upload_time": "2009-03-16T15:45:22", "url": "https://files.pythonhosted.org/packages/5a/b5/a5534800ee8f47baeb9429874e1a68f30c3b33b578019610301ec6ed5cd8/softwarefabrica.django.forms-0.9dev-BZR-r22-panta-elasticworld.org-20090315100838-qmi482ez1kn0xn97.tar.gz" } ], "0.9dev-BZR-r23-panta-elasticworld.org-20090317192744-od4jr0rafecsxd3w": [ { "comment_text": "", "digests": { "md5": "3f4da4bef51eeed9d87c5adb6239bc70", "sha256": "9b69aed93d79284e2a80be07127c6e10dc3f3e5ca2a96fd963588f4cb7830698" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r23_panta_elasticworld.org_20090317192744_od4jr0rafecsxd3w-py2.4.egg", "has_sig": false, "md5_digest": "3f4da4bef51eeed9d87c5adb6239bc70", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 38752, "upload_time": "2009-03-17T20:28:25", "url": "https://files.pythonhosted.org/packages/a5/c7/2632fb8f174462c18dd608a413e8a8c31b8e81907a067e0c86ce471ce686/softwarefabrica.django.forms-0.9dev_BZR_r23_panta_elasticworld.org_20090317192744_od4jr0rafecsxd3w-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "909c82a13cf68d31d5a1757262af3a11", "sha256": "c71744437200ee0c7088a1bfcf1b0244c2a4746be6d7196dccc7e98f6382bfe5" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r23_panta_elasticworld.org_20090317192744_od4jr0rafecsxd3w-py2.5.egg", "has_sig": false, "md5_digest": "909c82a13cf68d31d5a1757262af3a11", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 46520, "upload_time": "2009-03-17T20:28:18", "url": "https://files.pythonhosted.org/packages/d2/9e/f44d6840949d7fafec19451e838667480dce10ba6e23237a35c9ab26f67e/softwarefabrica.django.forms-0.9dev_BZR_r23_panta_elasticworld.org_20090317192744_od4jr0rafecsxd3w-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "90b731582b6b00e268e9d03077fd5a88", "sha256": "b1704c9190b8d87dcb43bf04e93808590b9fe04257f8a006c6c58e6bd411c74d" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r23_panta_elasticworld.org_20090317192744_od4jr0rafecsxd3w-py2.6.egg", "has_sig": false, "md5_digest": "90b731582b6b00e268e9d03077fd5a88", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 38452, "upload_time": "2009-03-17T20:28:39", "url": "https://files.pythonhosted.org/packages/d8/ff/9fbcb9ddd8614eaee426d9848a8416aa997b77dc0382850374a28983d79d/softwarefabrica.django.forms-0.9dev_BZR_r23_panta_elasticworld.org_20090317192744_od4jr0rafecsxd3w-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "31a23aa0cda091b0de3dea87b189b677", "sha256": "d3a7241538a9eea64699ad8e0fa066dd98bb59b920dd733d3fe55edfc326007b" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev-BZR-r23-panta-elasticworld.org-20090317192744-od4jr0rafecsxd3w.tar.gz", "has_sig": false, "md5_digest": "31a23aa0cda091b0de3dea87b189b677", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 428074, "upload_time": "2009-03-17T20:28:17", "url": "https://files.pythonhosted.org/packages/5a/3e/d833337219f7bbc166a23b5110565bd303a8d7a27b22179ce9de769f88f4/softwarefabrica.django.forms-0.9dev-BZR-r23-panta-elasticworld.org-20090317192744-od4jr0rafecsxd3w.tar.gz" } ], "0.9dev-BZR-r34-panta-elasticworld.org-20091021152229-fm6moqh61fhrlqr9": [ { "comment_text": "", "digests": { "md5": "6da0a036e2881e9ad04ef09f67e96058", "sha256": "772b8740c0f492f55f3aa2c316b37bc1ac35f089031c7b2ad472dc0ac9967160" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r34_panta_elasticworld.org_20091021152229_fm6moqh61fhrlqr9-py2.5.egg", "has_sig": false, "md5_digest": "6da0a036e2881e9ad04ef09f67e96058", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 54151, "upload_time": "2009-10-21T17:23:27", "url": "https://files.pythonhosted.org/packages/9a/69/fafa8bb2841bbd672ac7b9d460c1571d7dc4f0c232e63e15751164229c55/softwarefabrica.django.forms-0.9dev_BZR_r34_panta_elasticworld.org_20091021152229_fm6moqh61fhrlqr9-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "dc70308473fe5c9821e0dfc6e4f68897", "sha256": "8f25b4f9987a0ae2ba250e69cf02de03dd189361e1bbdbabdede1d64854f1da4" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r34_panta_elasticworld.org_20091021152229_fm6moqh61fhrlqr9-py2.6.egg", "has_sig": false, "md5_digest": "dc70308473fe5c9821e0dfc6e4f68897", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 53844, "upload_time": "2009-10-21T17:23:46", "url": "https://files.pythonhosted.org/packages/c2/2e/be065551b9cc90b3cc517ffdec7151cb7833c65d294f19a6a57375505531/softwarefabrica.django.forms-0.9dev_BZR_r34_panta_elasticworld.org_20091021152229_fm6moqh61fhrlqr9-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "f219cd24166085de8403a66de044a827", "sha256": "7f997af559bf2ca676a8037d3576ac61ddba5d008373b33c3e36086a0dbfb8d0" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev-BZR-r34-panta-elasticworld.org-20091021152229-fm6moqh61fhrlqr9.tar.gz", "has_sig": false, "md5_digest": "f219cd24166085de8403a66de044a827", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 432555, "upload_time": "2009-10-21T17:23:26", "url": "https://files.pythonhosted.org/packages/f4/d1/4c1c0b49beb7e7bf12a56624a8272bee859fc824a9f8fae792922376039b/softwarefabrica.django.forms-0.9dev-BZR-r34-panta-elasticworld.org-20091021152229-fm6moqh61fhrlqr9.tar.gz" } ], "0.9dev-BZR-r36-panta-elasticworld.org-20091026161236-ncn99jjafeksdjkc": [ { "comment_text": "", "digests": { "md5": "e1c9a562ae10f5ade63aeb1f81cfe9bc", "sha256": "dadbd8fabb66bbb148cc9d90a3e262b1e34cf705400ddb1024915949c6bf5631" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r36_panta_elasticworld.org_20091026161236_ncn99jjafeksdjkc-py2.4.egg", "has_sig": false, "md5_digest": "e1c9a562ae10f5ade63aeb1f81cfe9bc", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 54809, "upload_time": "2009-10-26T17:13:47", "url": "https://files.pythonhosted.org/packages/0f/28/e408842d7d6a78170f35c6dd9f4a03c25ed33e78e137839b0beb60e57919/softwarefabrica.django.forms-0.9dev_BZR_r36_panta_elasticworld.org_20091026161236_ncn99jjafeksdjkc-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "3c063e8f9d902d024b5a5b28f059f8e3", "sha256": "c49a6d73de1455a395885e44fe0f23eb987b5bcac2f6413b14283747717949ed" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r36_panta_elasticworld.org_20091026161236_ncn99jjafeksdjkc-py2.5.egg", "has_sig": false, "md5_digest": "3c063e8f9d902d024b5a5b28f059f8e3", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 54484, "upload_time": "2009-10-26T17:13:33", "url": "https://files.pythonhosted.org/packages/bf/8e/421b6ef955a6d5b42a8be202a589e0dca7f22efc6f19858670c263cc0223/softwarefabrica.django.forms-0.9dev_BZR_r36_panta_elasticworld.org_20091026161236_ncn99jjafeksdjkc-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "ddd06b6163376a62b33dda3036f1acd3", "sha256": "b761e12cab9e21b2dcbd327cc4f0d74003dc7400643ec11137fc1c04d9ebcd04" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r36_panta_elasticworld.org_20091026161236_ncn99jjafeksdjkc-py2.6.egg", "has_sig": false, "md5_digest": "ddd06b6163376a62b33dda3036f1acd3", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 54448, "upload_time": "2009-10-26T17:14:06", "url": "https://files.pythonhosted.org/packages/ce/d8/b4e8869882ac7d782b21f62587d4480bd2da8fccb4f056dcb1dd52566e84/softwarefabrica.django.forms-0.9dev_BZR_r36_panta_elasticworld.org_20091026161236_ncn99jjafeksdjkc-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "b69612fe400f82ae6e1df911b2c25dba", "sha256": "29a48f23696a24e0316ba4f7a4a414e998469f9cdd361687519e43cfa645e921" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev-BZR-r36-panta-elasticworld.org-20091026161236-ncn99jjafeksdjkc.tar.gz", "has_sig": false, "md5_digest": "b69612fe400f82ae6e1df911b2c25dba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 432762, "upload_time": "2009-10-26T17:13:32", "url": "https://files.pythonhosted.org/packages/8c/53/d8c750af5b4801f3f833457aa5d4d944035dff2fd4f2cfe0e4bb859bf991/softwarefabrica.django.forms-0.9dev-BZR-r36-panta-elasticworld.org-20091026161236-ncn99jjafeksdjkc.tar.gz" } ], "0.9dev-BZR-r37-panta-elasticworld.org-20091110103112-cilkf24f2o503tkm": [ { "comment_text": "", "digests": { "md5": "64d7612bd50be9d9dc74372da089ded0", "sha256": "0da76546286b700e01c6571c483b77245dbc59f0fec90f205b0eea90379a63f2" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r37_panta_elasticworld.org_20091110103112_cilkf24f2o503tkm-py2.4.egg", "has_sig": false, "md5_digest": "64d7612bd50be9d9dc74372da089ded0", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 55606, "upload_time": "2009-11-10T11:32:38", "url": "https://files.pythonhosted.org/packages/00/55/c0ddaf8d29f7e8049770ef65d45dc79a84a4515bef28f8d502af819e5763/softwarefabrica.django.forms-0.9dev_BZR_r37_panta_elasticworld.org_20091110103112_cilkf24f2o503tkm-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "e93b0190a5837736a8bb0cbffeab73ff", "sha256": "f5198081f9ed50ec90af1fa39ab14e47ba09107a70613435d0f2b7f18a91f92a" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r37_panta_elasticworld.org_20091110103112_cilkf24f2o503tkm-py2.5.egg", "has_sig": false, "md5_digest": "e93b0190a5837736a8bb0cbffeab73ff", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 55291, "upload_time": "2009-11-10T11:32:29", "url": "https://files.pythonhosted.org/packages/20/8f/52c0b137cb86beeb097c73f08f524287d62a09b0ce6ee968dacd8e1d1847/softwarefabrica.django.forms-0.9dev_BZR_r37_panta_elasticworld.org_20091110103112_cilkf24f2o503tkm-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "b096dc4b1bb8a1b7e114a17480ce1ddd", "sha256": "fa7fca550619990663a1bfb131a180c262199643a7ace0dfd0a25f1c3760c55c" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r37_panta_elasticworld.org_20091110103112_cilkf24f2o503tkm-py2.6.egg", "has_sig": false, "md5_digest": "b096dc4b1bb8a1b7e114a17480ce1ddd", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 55253, "upload_time": "2009-11-10T11:32:53", "url": "https://files.pythonhosted.org/packages/89/ff/1240e327283c4119843cb697e9ea0d5ebcb0cc364f5c60866d1563f00285/softwarefabrica.django.forms-0.9dev_BZR_r37_panta_elasticworld.org_20091110103112_cilkf24f2o503tkm-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "652a976bfb12fae4a778f3fc040e1e77", "sha256": "52a794d6c5ee3ac0c2fa47bbfeae500b90553912af04f079f18404b3ddcb8ee1" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev-BZR-r37-panta-elasticworld.org-20091110103112-cilkf24f2o503tkm.tar.gz", "has_sig": false, "md5_digest": "652a976bfb12fae4a778f3fc040e1e77", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 433147, "upload_time": "2009-11-10T11:32:27", "url": "https://files.pythonhosted.org/packages/d9/74/99aa563dd1a7d3d9d2934dbd53af900739f5f140d441055f1ec6335036c2/softwarefabrica.django.forms-0.9dev-BZR-r37-panta-elasticworld.org-20091110103112-cilkf24f2o503tkm.tar.gz" } ], "0.9dev-BZR-r39-panta-elasticworld.org-20091111113416-ir4wlgfmp5lp6m69": [ { "comment_text": "", "digests": { "md5": "108cb2b7083ac1a96e09a3a82da4d0d8", "sha256": "aa074f4cee55311b1cb94ab623cbc8bd70b89142735e8a48db5b7aafdc7b90af" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r39_panta_elasticworld.org_20091111113416_ir4wlgfmp5lp6m69-py2.4.egg", "has_sig": false, "md5_digest": "108cb2b7083ac1a96e09a3a82da4d0d8", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 55682, "upload_time": "2009-11-18T09:36:46", "url": "https://files.pythonhosted.org/packages/29/e9/abb8c22b7478fd138bf9c79418a1a551fb4644cbfd4af3d9b0ff14e4176c/softwarefabrica.django.forms-0.9dev_BZR_r39_panta_elasticworld.org_20091111113416_ir4wlgfmp5lp6m69-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "c9c2a83c8429307d394e62023736a0f7", "sha256": "6448588436218b5d5336b09e542bbf402d5e03893323079a45c2b42e61134b56" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r39_panta_elasticworld.org_20091111113416_ir4wlgfmp5lp6m69-py2.5.egg", "has_sig": false, "md5_digest": "c9c2a83c8429307d394e62023736a0f7", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 55375, "upload_time": "2009-11-18T09:36:41", "url": "https://files.pythonhosted.org/packages/4f/be/00b64dc1234cf15a1379b250873f00830e6bebccac79f778f3c62c74254f/softwarefabrica.django.forms-0.9dev_BZR_r39_panta_elasticworld.org_20091111113416_ir4wlgfmp5lp6m69-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "696f04c8676b44944c095ee5d4696136", "sha256": "c83fd3eefba5ace51477cbbbdadf25fd6701a340b17382da915e7896250d244d" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r39_panta_elasticworld.org_20091111113416_ir4wlgfmp5lp6m69-py2.6.egg", "has_sig": false, "md5_digest": "696f04c8676b44944c095ee5d4696136", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 55338, "upload_time": "2009-11-18T09:36:57", "url": "https://files.pythonhosted.org/packages/75/9b/146ac86f52b706ef064a918da7664fbc1b6c8fa93e32a3ae59bace1b09aa/softwarefabrica.django.forms-0.9dev_BZR_r39_panta_elasticworld.org_20091111113416_ir4wlgfmp5lp6m69-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "308cec0b3be246d5f1be45442a1bed19", "sha256": "03ac29e5a94843650b1c76173ecdf3af0b2e663c2852957a29956702f87fc4e9" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev-BZR-r39-panta-elasticworld.org-20091111113416-ir4wlgfmp5lp6m69.tar.gz", "has_sig": false, "md5_digest": "308cec0b3be246d5f1be45442a1bed19", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 433189, "upload_time": "2009-11-18T09:36:40", "url": "https://files.pythonhosted.org/packages/98/72/d5e53ddcb23766e25d8ddcb52a1d7470d1acd2b9da847644594ce85e40f0/softwarefabrica.django.forms-0.9dev-BZR-r39-panta-elasticworld.org-20091111113416-ir4wlgfmp5lp6m69.tar.gz" } ], "0.9dev-BZR-r41-panta-elasticworld.org-20100224160218-ekf7vb0w9fx9318y": [ { "comment_text": "", "digests": { "md5": "c5096a38e968318b6d433955c91a4841", "sha256": "6d3c4286fbcd3bceaadea1965800f7df8f5383998c29d0b5e5d1863a6df8805c" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r41_panta_elasticworld.org_20100224160218_ekf7vb0w9fx9318y-py2.4.egg", "has_sig": false, "md5_digest": "c5096a38e968318b6d433955c91a4841", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 64663, "upload_time": "2010-02-24T17:05:21", "url": "https://files.pythonhosted.org/packages/99/f4/c1bb6763725a0f6dc885ad551895453e7e8c54485f79ff19cdce1721d74d/softwarefabrica.django.forms-0.9dev_BZR_r41_panta_elasticworld.org_20100224160218_ekf7vb0w9fx9318y-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "05f73d90953b488cf8540682f9fe6eed", "sha256": "bcbe43277630793dfbcb93d8d4f972f2bfca92606cc512cc79d711fbc392932f" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r41_panta_elasticworld.org_20100224160218_ekf7vb0w9fx9318y-py2.5.egg", "has_sig": false, "md5_digest": "05f73d90953b488cf8540682f9fe6eed", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 64236, "upload_time": "2010-02-24T17:05:51", "url": "https://files.pythonhosted.org/packages/81/90/208ee5da7794b19a9536e7032547a2b74488b13891afea385713bdb8b64e/softwarefabrica.django.forms-0.9dev_BZR_r41_panta_elasticworld.org_20100224160218_ekf7vb0w9fx9318y-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "e5af67dac772a3769835db6db75d91d5", "sha256": "4998d3a641bf47abf4488be3deca34803be4213c3c46edaa3d72859c88f7018c" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r41_panta_elasticworld.org_20100224160218_ekf7vb0w9fx9318y-py2.6.egg", "has_sig": false, "md5_digest": "e5af67dac772a3769835db6db75d91d5", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 64181, "upload_time": "2010-02-24T17:05:01", "url": "https://files.pythonhosted.org/packages/c3/8e/b63d7ff9a5676c499aebdd92bff887ac5c7489b94152b8736176bb390a13/softwarefabrica.django.forms-0.9dev_BZR_r41_panta_elasticworld.org_20100224160218_ekf7vb0w9fx9318y-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "cf0053a1d6f08bd99fc3e004d5ed55f0", "sha256": "a0c36cf657ca32bac138be3bdac9e33b8a74d133547e06199b4570c2f91a37cf" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev-BZR-r41-panta-elasticworld.org-20100224160218-ekf7vb0w9fx9318y.tar.gz", "has_sig": false, "md5_digest": "cf0053a1d6f08bd99fc3e004d5ed55f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 434885, "upload_time": "2010-02-24T17:04:48", "url": "https://files.pythonhosted.org/packages/40/f6/c319edb5d2b10dd1b08eff3872f55a3e040b35d4caf2c884090d95dea60a/softwarefabrica.django.forms-0.9dev-BZR-r41-panta-elasticworld.org-20100224160218-ekf7vb0w9fx9318y.tar.gz" } ], "0.9dev-BZR-r42-panta-elasticworld.org-20100224161224-s4w9o9n2t6pllcha": [ { "comment_text": "", "digests": { "md5": "960334d765be7ca56cc3ca35dcc65ba1", "sha256": "d4676f69720b8e0658d34e767b383c0b1cd4049627d9a614fca913756039124b" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r42_panta_elasticworld.org_20100224161224_s4w9o9n2t6pllcha-py2.4.egg", "has_sig": false, "md5_digest": "960334d765be7ca56cc3ca35dcc65ba1", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 64787, "upload_time": "2010-02-24T17:13:57", "url": "https://files.pythonhosted.org/packages/13/33/9c8d4722265fedaf03cd12f065e24cc2ef96d1f8ee133bfb9f18484f82aa/softwarefabrica.django.forms-0.9dev_BZR_r42_panta_elasticworld.org_20100224161224_s4w9o9n2t6pllcha-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "bf7cc422ae4b8707cae374d2e5fa1064", "sha256": "fd9cc35a8e6d6488c2b4ce1b8915b188669f1c09dca66b25518834da86fb4a4f" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r42_panta_elasticworld.org_20100224161224_s4w9o9n2t6pllcha-py2.5.egg", "has_sig": false, "md5_digest": "bf7cc422ae4b8707cae374d2e5fa1064", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 64359, "upload_time": "2010-02-24T17:15:00", "url": "https://files.pythonhosted.org/packages/c7/ed/d4c1c48dbe1619328cf7349ef9d0da32f609a71c22d564af6e4ad0558f02/softwarefabrica.django.forms-0.9dev_BZR_r42_panta_elasticworld.org_20100224161224_s4w9o9n2t6pllcha-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "535555e8a59521d53d16087e6d43ff0b", "sha256": "6f908bdd278ae444107a7ff462033e227e2e4ad663ad1b62d89bc90bd67c4c35" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r42_panta_elasticworld.org_20100224161224_s4w9o9n2t6pllcha-py2.6.egg", "has_sig": false, "md5_digest": "535555e8a59521d53d16087e6d43ff0b", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 64305, "upload_time": "2010-02-24T17:13:40", "url": "https://files.pythonhosted.org/packages/b3/7b/a28d8a5b12ca6e3dde660860126dfe54bba6111c0a71182f153b5fe7bad5/softwarefabrica.django.forms-0.9dev_BZR_r42_panta_elasticworld.org_20100224161224_s4w9o9n2t6pllcha-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "e3ea0eacf4b2447e83d2a04cfddaa5c5", "sha256": "c5321e41ef58a3eb75ff031533c3ca075eebf3819322dede34b04b69ba7997bb" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev-BZR-r42-panta-elasticworld.org-20100224161224-s4w9o9n2t6pllcha.tar.gz", "has_sig": false, "md5_digest": "e3ea0eacf4b2447e83d2a04cfddaa5c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 458119, "upload_time": "2010-02-24T17:13:23", "url": "https://files.pythonhosted.org/packages/88/fa/ca96b9be853cc6ebad01ea13c202f5d936bf17fe58584ab8973277b7cbbc/softwarefabrica.django.forms-0.9dev-BZR-r42-panta-elasticworld.org-20100224161224-s4w9o9n2t6pllcha.tar.gz" } ], "0.9dev-BZR-r43-panta-elasticworld.org-20100224162511-0bctvwyi62hpopdb": [ { "comment_text": "", "digests": { "md5": "587e57b3b0a1118ca75a6df7d5048c12", "sha256": "162dfb3ab9e315a6c18149b0f7fdd134ff66156027e81f3234c92adaa387114e" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r43_panta_elasticworld.org_20100224162511_0bctvwyi62hpopdb-py2.4.egg", "has_sig": false, "md5_digest": "587e57b3b0a1118ca75a6df7d5048c12", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 86495, "upload_time": "2010-02-24T17:26:35", "url": "https://files.pythonhosted.org/packages/35/69/cc6bc662c3c795080a07036fb42fee7bde0712287439180ce60d6f3ba92a/softwarefabrica.django.forms-0.9dev_BZR_r43_panta_elasticworld.org_20100224162511_0bctvwyi62hpopdb-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "ae77ccefc2f6f07308dc9e246073a64b", "sha256": "c784c0fb080be1036006347bebff34adfe9a04d9ace3c2b3d4fc9d1af1894234" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r43_panta_elasticworld.org_20100224162511_0bctvwyi62hpopdb-py2.5.egg", "has_sig": false, "md5_digest": "ae77ccefc2f6f07308dc9e246073a64b", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 86068, "upload_time": "2010-02-24T17:27:02", "url": "https://files.pythonhosted.org/packages/cc/f0/057d4eeb8754ae1c6c4e67dd55e72a99a9c12f471406508ec52c2b40ac7a/softwarefabrica.django.forms-0.9dev_BZR_r43_panta_elasticworld.org_20100224162511_0bctvwyi62hpopdb-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "3764499c05f1bb8be6af2b206ee37f20", "sha256": "84a131f0aa60558f9cab7be17c8848bb01c26ee20cd6a7b757adda601b3cc1f2" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r43_panta_elasticworld.org_20100224162511_0bctvwyi62hpopdb-py2.6.egg", "has_sig": false, "md5_digest": "3764499c05f1bb8be6af2b206ee37f20", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 86014, "upload_time": "2010-02-24T17:26:22", "url": "https://files.pythonhosted.org/packages/49/c1/037186d86cce58d2569cbff06c42821dd4b19baeb3a37c5feb394382a29c/softwarefabrica.django.forms-0.9dev_BZR_r43_panta_elasticworld.org_20100224162511_0bctvwyi62hpopdb-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "472795335ff0fa9e81add258d632f71b", "sha256": "1973d064042cff9190cebc9f1d902ff8fd68744c02aea482985a105a96a0e0a5" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev-BZR-r43-panta-elasticworld.org-20100224162511-0bctvwyi62hpopdb.tar.gz", "has_sig": false, "md5_digest": "472795335ff0fa9e81add258d632f71b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 457469, "upload_time": "2010-02-24T17:26:05", "url": "https://files.pythonhosted.org/packages/bc/34/5b2b181de06ab0dac0e9915f05eee7a81e04b2c7f96a9b25162e8ebd04a7/softwarefabrica.django.forms-0.9dev-BZR-r43-panta-elasticworld.org-20100224162511-0bctvwyi62hpopdb.tar.gz" } ], "0.9dev-BZR-r44-panta-elasticworld.org-20100224164322-otsbzj0xv63dh4u4": [ { "comment_text": "", "digests": { "md5": "e31366d487c5ba817095181b60eb7ef6", "sha256": "6ef399b1e226a2c06aa7f14d75c061edd14dacaa03798f650287efd432787fd1" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r44_panta_elasticworld.org_20100224164322_otsbzj0xv63dh4u4-py2.4.egg", "has_sig": false, "md5_digest": "e31366d487c5ba817095181b60eb7ef6", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 86463, "upload_time": "2010-02-24T17:45:40", "url": "https://files.pythonhosted.org/packages/e5/80/692c9f72c70d9155ca118a809db9d8590a0d21a796953701de8db2a33047/softwarefabrica.django.forms-0.9dev_BZR_r44_panta_elasticworld.org_20100224164322_otsbzj0xv63dh4u4-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "73235b5ba7f8c28ed6b650262479f069", "sha256": "88f8aa379211d3f66c87ae0de02144b2dced430cf01417b04e700d800bcd23e9" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r44_panta_elasticworld.org_20100224164322_otsbzj0xv63dh4u4-py2.5.egg", "has_sig": false, "md5_digest": "73235b5ba7f8c28ed6b650262479f069", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 86050, "upload_time": "2010-02-24T17:46:18", "url": "https://files.pythonhosted.org/packages/7a/8a/b584831692c842d52de726feb17695fb96d141446870b3bcae8084b19bc1/softwarefabrica.django.forms-0.9dev_BZR_r44_panta_elasticworld.org_20100224164322_otsbzj0xv63dh4u4-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "313b25c797221330d08f12faf047f532", "sha256": "bfa5aa3f847c7a9f35c0ef932bf1a23864ed3d14ae9a6ba5ba8440ca69dc2254" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r44_panta_elasticworld.org_20100224164322_otsbzj0xv63dh4u4-py2.6.egg", "has_sig": false, "md5_digest": "313b25c797221330d08f12faf047f532", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 85994, "upload_time": "2010-02-24T17:45:16", "url": "https://files.pythonhosted.org/packages/a7/93/bf1d9779fcf15e4978947804a3ff54ab2f94650ee9802f636e7f214d769c/softwarefabrica.django.forms-0.9dev_BZR_r44_panta_elasticworld.org_20100224164322_otsbzj0xv63dh4u4-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "feb5706b5ab52b1f21399a0dfc8be22c", "sha256": "e4f3539a5d458e2eb82978d99926e84dcc6c394ff5cb99d46f7ac24e7fe7469e" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev-BZR-r44-panta-elasticworld.org-20100224164322-otsbzj0xv63dh4u4.tar.gz", "has_sig": false, "md5_digest": "feb5706b5ab52b1f21399a0dfc8be22c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 457439, "upload_time": "2010-02-24T17:45:02", "url": "https://files.pythonhosted.org/packages/6a/5f/dad18e53acbd8cdd7cdc765ae9e3f771af00df84e4757fc564563506a8e8/softwarefabrica.django.forms-0.9dev-BZR-r44-panta-elasticworld.org-20100224164322-otsbzj0xv63dh4u4.tar.gz" } ], "0.9dev-BZR-r45-panta-elasticworld.org-20100226104545-conueyo0alu35zm4": [ { "comment_text": "", "digests": { "md5": "67b3b07725aa671201c5b42af2f1b304", "sha256": "1292b83eee12c4a6df8459dda66abd337864735ed5543ebf26e564f01131cb8d" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r45_panta_elasticworld.org_20100226104545_conueyo0alu35zm4-py2.4.egg", "has_sig": false, "md5_digest": "67b3b07725aa671201c5b42af2f1b304", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 86451, "upload_time": "2010-02-26T11:47:16", "url": "https://files.pythonhosted.org/packages/ab/47/eaf70ee788d93b2dc5747b183e96295a2f7b67219ff738d54255d40d7e6d/softwarefabrica.django.forms-0.9dev_BZR_r45_panta_elasticworld.org_20100226104545_conueyo0alu35zm4-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "e14dcdfc8b0ee83719f9daada02be5f4", "sha256": "020562a39ea14ca212beb0d909ad5a54f556c2912f952ef827d3fa9e7bbfa3b0" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r45_panta_elasticworld.org_20100226104545_conueyo0alu35zm4-py2.5.egg", "has_sig": false, "md5_digest": "e14dcdfc8b0ee83719f9daada02be5f4", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 86043, "upload_time": "2010-02-26T11:47:46", "url": "https://files.pythonhosted.org/packages/c9/3e/39710f94d9d5601d89603cb0d7977a11307478d831c27ffedd30c784ddaa/softwarefabrica.django.forms-0.9dev_BZR_r45_panta_elasticworld.org_20100226104545_conueyo0alu35zm4-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "530a530421b2326c8a26418f097e2491", "sha256": "30260a88a0e3f5098245d81b73503de57a0d0dd85b44876beead0d165017107f" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r45_panta_elasticworld.org_20100226104545_conueyo0alu35zm4-py2.6.egg", "has_sig": false, "md5_digest": "530a530421b2326c8a26418f097e2491", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 85987, "upload_time": "2010-02-26T11:47:03", "url": "https://files.pythonhosted.org/packages/f3/7f/465d67f4a013009e8bd5642c1cb84b5798d12865d221fefb2c9b26426abc/softwarefabrica.django.forms-0.9dev_BZR_r45_panta_elasticworld.org_20100226104545_conueyo0alu35zm4-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "972d043357f7567c58a0994764b9a2af", "sha256": "f26d1d5d850dce7dadc1c5de82d6e484a871d01117258750b3547d14f94ea878" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev-BZR-r45-panta-elasticworld.org-20100226104545-conueyo0alu35zm4.tar.gz", "has_sig": false, "md5_digest": "972d043357f7567c58a0994764b9a2af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 457433, "upload_time": "2010-02-26T11:47:01", "url": "https://files.pythonhosted.org/packages/61/fb/92254639051862a74275a2002dca7d1cef35b0a2524b4ed0ae9611db0997/softwarefabrica.django.forms-0.9dev-BZR-r45-panta-elasticworld.org-20100226104545-conueyo0alu35zm4.tar.gz" } ], "0.9dev-BZR-r46-panta-elasticworld.org-20100301175748-ecls2dwys4lpjtwf": [ { "comment_text": "", "digests": { "md5": "54ee3661bc3aa51aa29c4db846ec8bbe", "sha256": "7e39ccd295ca0c60737bc5bbff6b5f746494307abe83421bc762985a70d9400a" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r46_panta_elasticworld.org_20100301175748_ecls2dwys4lpjtwf-py2.4.egg", "has_sig": false, "md5_digest": "54ee3661bc3aa51aa29c4db846ec8bbe", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 86472, "upload_time": "2010-03-01T18:59:40", "url": "https://files.pythonhosted.org/packages/a0/5c/1bf54f81ce696e37cb83eb5b940614b65e512cc28f2f859384a410133b06/softwarefabrica.django.forms-0.9dev_BZR_r46_panta_elasticworld.org_20100301175748_ecls2dwys4lpjtwf-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "34a85f814c120b6e393012040cfb604c", "sha256": "68855e94387d256cbf5be5032631ab8662dc39814363b4affcd2dc22fd3c21ff" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r46_panta_elasticworld.org_20100301175748_ecls2dwys4lpjtwf-py2.5.egg", "has_sig": false, "md5_digest": "34a85f814c120b6e393012040cfb604c", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 86063, "upload_time": "2010-03-01T18:59:52", "url": "https://files.pythonhosted.org/packages/54/54/109de12c361510af6d338fc87d8ea6a47350078042af3738d6881c2609af/softwarefabrica.django.forms-0.9dev_BZR_r46_panta_elasticworld.org_20100301175748_ecls2dwys4lpjtwf-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "1bd994c044ccc2a41155247ac2dc0f1f", "sha256": "045da98b1e756fb506584c3a0ba57999aa5f17ffd1678fb1e79ea0aeb74bbd20" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r46_panta_elasticworld.org_20100301175748_ecls2dwys4lpjtwf-py2.6.egg", "has_sig": false, "md5_digest": "1bd994c044ccc2a41155247ac2dc0f1f", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 86007, "upload_time": "2010-03-01T18:59:31", "url": "https://files.pythonhosted.org/packages/1a/5e/c9a421a8cb5bf36881b3be5731faf3dd94c11de85337644a2505bee6f988/softwarefabrica.django.forms-0.9dev_BZR_r46_panta_elasticworld.org_20100301175748_ecls2dwys4lpjtwf-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "664ea3f629686c444815550f3b11283e", "sha256": "c5fbe31d70edab28766eb51ebf62ce321f07ce60e4a9c7e9c7a9de97a7d5cfae" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev-BZR-r46-panta-elasticworld.org-20100301175748-ecls2dwys4lpjtwf.tar.gz", "has_sig": false, "md5_digest": "664ea3f629686c444815550f3b11283e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 457449, "upload_time": "2010-03-01T18:59:29", "url": "https://files.pythonhosted.org/packages/3c/e7/c3ea0f7ad51a662b429a1a7ee36e4f51a951c56fa3db1e3f0d6d95256d38/softwarefabrica.django.forms-0.9dev-BZR-r46-panta-elasticworld.org-20100301175748-ecls2dwys4lpjtwf.tar.gz" } ], "0.9dev-BZR-r47-panta-elasticworld.org-20100302103836-4q6st6r4t667zcr8": [ { "comment_text": "", "digests": { "md5": "27d65c3295c397822fcc6678d339685e", "sha256": "d1482b04f4dfb844cb0e89ebac1700c0b0d93abac8f1bc01a499a6949cd5c553" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r47_panta_elasticworld.org_20100302103836_4q6st6r4t667zcr8-py2.4.egg", "has_sig": false, "md5_digest": "27d65c3295c397822fcc6678d339685e", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 87131, "upload_time": "2010-03-02T11:39:24", "url": "https://files.pythonhosted.org/packages/d7/25/3a57c8b9ec6c0c073caf2291f17a0a5ca01fe2002a4ea0288eee5a01e192/softwarefabrica.django.forms-0.9dev_BZR_r47_panta_elasticworld.org_20100302103836_4q6st6r4t667zcr8-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "5d803ca8875100d7dcb8c1a0b92c270d", "sha256": "4c607aa7d40064ebc43597735c383d2067d7258cfd21305cac8e3f349e0bd424" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r47_panta_elasticworld.org_20100302103836_4q6st6r4t667zcr8-py2.5.egg", "has_sig": false, "md5_digest": "5d803ca8875100d7dcb8c1a0b92c270d", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 86738, "upload_time": "2010-03-02T11:39:30", "url": "https://files.pythonhosted.org/packages/aa/c4/92b49593ece49677ea8b80da69fd7900338c93b1d0582778a6a93bebef45/softwarefabrica.django.forms-0.9dev_BZR_r47_panta_elasticworld.org_20100302103836_4q6st6r4t667zcr8-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "3b129254da9deb71b6c4d58a70393173", "sha256": "ea40482b19388e46d3970403dd29cd98f6e0c0ab0a71d56680e2f17bdb583f37" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r47_panta_elasticworld.org_20100302103836_4q6st6r4t667zcr8-py2.6.egg", "has_sig": false, "md5_digest": "3b129254da9deb71b6c4d58a70393173", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 86685, "upload_time": "2010-03-02T11:39:19", "url": "https://files.pythonhosted.org/packages/2f/29/90d7f18881e212209dd5cb9c706499ba328743596111eb5792d98e277481/softwarefabrica.django.forms-0.9dev_BZR_r47_panta_elasticworld.org_20100302103836_4q6st6r4t667zcr8-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "10fffb92e8257dca409d7be591e76d66", "sha256": "634ee36d1ece7088e52cf0bc94f5458cc9177526e3f6a9961cf63e19d04c65c6" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev-BZR-r47-panta-elasticworld.org-20100302103836-4q6st6r4t667zcr8.tar.gz", "has_sig": false, "md5_digest": "10fffb92e8257dca409d7be591e76d66", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 457560, "upload_time": "2010-03-02T11:39:17", "url": "https://files.pythonhosted.org/packages/85/56/3f4404f30060e72799656f1c9691e2c74c9dee5a8bb53b9bbd729b1af007/softwarefabrica.django.forms-0.9dev-BZR-r47-panta-elasticworld.org-20100302103836-4q6st6r4t667zcr8.tar.gz" } ], "0.9dev-BZR-r9-panta-elasticworld.org-20081216120255-bfxtvm59se53cu9k": [ { "comment_text": "", "digests": { "md5": "acbd3c143697e8cdd5da8136a7d1cff5", "sha256": "7d4844272cb124159e6624ce3abb65fc4763f6ca4934dcf563abb4dc5b132cc9" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r9_panta_elasticworld.org_20081216120255_bfxtvm59se53cu9k-py2.5.egg", "has_sig": false, "md5_digest": "acbd3c143697e8cdd5da8136a7d1cff5", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 43319, "upload_time": "2008-12-16T13:11:36", "url": "https://files.pythonhosted.org/packages/09/d9/1573c182faa4659b743031f0fcb8f25168523666505ee98cee46fb8c4c9d/softwarefabrica.django.forms-0.9dev_BZR_r9_panta_elasticworld.org_20081216120255_bfxtvm59se53cu9k-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "b29978b98b782eaee7bf15d9f2152de2", "sha256": "79144499dc823725f31c6168f84b385920f813920835c50b0014f37194de8721" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev-BZR-r9-panta-elasticworld.org-20081216120255-bfxtvm59se53cu9k.tar.gz", "has_sig": false, "md5_digest": "b29978b98b782eaee7bf15d9f2152de2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 415113, "upload_time": "2008-12-16T13:11:35", "url": "https://files.pythonhosted.org/packages/2c/a2/9f7c8847db94385c966863bba7f7f8d42714bb3b300f5358f601522abb64/softwarefabrica.django.forms-0.9dev-BZR-r9-panta-elasticworld.org-20081216120255-bfxtvm59se53cu9k.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "27d65c3295c397822fcc6678d339685e", "sha256": "d1482b04f4dfb844cb0e89ebac1700c0b0d93abac8f1bc01a499a6949cd5c553" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r47_panta_elasticworld.org_20100302103836_4q6st6r4t667zcr8-py2.4.egg", "has_sig": false, "md5_digest": "27d65c3295c397822fcc6678d339685e", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 87131, "upload_time": "2010-03-02T11:39:24", "url": "https://files.pythonhosted.org/packages/d7/25/3a57c8b9ec6c0c073caf2291f17a0a5ca01fe2002a4ea0288eee5a01e192/softwarefabrica.django.forms-0.9dev_BZR_r47_panta_elasticworld.org_20100302103836_4q6st6r4t667zcr8-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "5d803ca8875100d7dcb8c1a0b92c270d", "sha256": "4c607aa7d40064ebc43597735c383d2067d7258cfd21305cac8e3f349e0bd424" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r47_panta_elasticworld.org_20100302103836_4q6st6r4t667zcr8-py2.5.egg", "has_sig": false, "md5_digest": "5d803ca8875100d7dcb8c1a0b92c270d", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 86738, "upload_time": "2010-03-02T11:39:30", "url": "https://files.pythonhosted.org/packages/aa/c4/92b49593ece49677ea8b80da69fd7900338c93b1d0582778a6a93bebef45/softwarefabrica.django.forms-0.9dev_BZR_r47_panta_elasticworld.org_20100302103836_4q6st6r4t667zcr8-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "3b129254da9deb71b6c4d58a70393173", "sha256": "ea40482b19388e46d3970403dd29cd98f6e0c0ab0a71d56680e2f17bdb583f37" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev_BZR_r47_panta_elasticworld.org_20100302103836_4q6st6r4t667zcr8-py2.6.egg", "has_sig": false, "md5_digest": "3b129254da9deb71b6c4d58a70393173", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 86685, "upload_time": "2010-03-02T11:39:19", "url": "https://files.pythonhosted.org/packages/2f/29/90d7f18881e212209dd5cb9c706499ba328743596111eb5792d98e277481/softwarefabrica.django.forms-0.9dev_BZR_r47_panta_elasticworld.org_20100302103836_4q6st6r4t667zcr8-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "10fffb92e8257dca409d7be591e76d66", "sha256": "634ee36d1ece7088e52cf0bc94f5458cc9177526e3f6a9961cf63e19d04c65c6" }, "downloads": -1, "filename": "softwarefabrica.django.forms-0.9dev-BZR-r47-panta-elasticworld.org-20100302103836-4q6st6r4t667zcr8.tar.gz", "has_sig": false, "md5_digest": "10fffb92e8257dca409d7be591e76d66", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 457560, "upload_time": "2010-03-02T11:39:17", "url": "https://files.pythonhosted.org/packages/85/56/3f4404f30060e72799656f1c9691e2c74c9dee5a8bb53b9bbd729b1af007/softwarefabrica.django.forms-0.9dev-BZR-r47-panta-elasticworld.org-20100302103836-4q6st6r4t667zcr8.tar.gz" } ] }