{ "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 CRUD\n===========================\n\n.. admonition:: About this document\n\n This document provides an overview of what Softwarefabrica Django CRUD 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 library provides flexible and advanced CRUD generic views for applications\ndeveloped with the `Django`_ web framework.\n\nBy default the generic views make use of the advanced form classes made\navailable through `softwarefabrica.django.forms`_, thus automatically using\nthe optional template-based form rendering, the advanced widgets for date,\ntime, foreign-key and many-to-many fields, etc.\nHowever it's easy to switch back to `Django`_ default forms and widgets if\ndesired.\n\nGeneric views are a backward-compatible drop-in replacement for those offered by\n`Django`_, it's just a matter of importing them from\n`softwarefabrica.django.crud.crud` instead of from `django.views.generic`.\n\nIn addition, a more flexible set of **Object Oriented views** is available.\nJust subclass them as you like, instantiate them and put the instances inside\nyour URLconf, as if they were regular function views.\nIn the majority of cases you won't even need to subclass them, since you can go\na long way just by passing the proper parameters to the constructor.\n\nIn fact, Object oriented views are so powerful and flexible that plain\nfunctional views are actually instances. They are implemented by the library in\nthis way:\n\n::\n\n create_object = CreateObjectView()\n update_object = UpdateObjectView()\n delete_object = DeleteObjectView()\n object_detail = DetailObjectView()\n object_list = ListObjectView()\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\nFeedback\n--------\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.forms`_, 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\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-crud\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-crud\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-crud\n.. _`LaunchPad`: http://launchpad.net\n.. _`Bazaar`: http://bazaar-vcs.org/\n.. _`online`: http://bazaar.launchpad.net/~softwarefabrica/sf-django-crud/trunk/changes\n.. _`Softwarefabrica`: https://edge.launchpad.net/softwarefabrica\n.. _`team`: https://launchpad.net/~softwarefabrica\n.. _`bugs`: https://bugs.launchpad.net/sf-django-crud\n.. _`enhancements`: https://bugs.launchpad.net/sf-django-crud\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\n2009-11-24 Marco Pantaleoni \n\n * crud.py: fixed bug in GenericView.get_form_kwargs().\n\n2009-11-11 Marco Pantaleoni \n\n * [BIG CHANGE]: view call state is now encapsulated in a ViewCall\n instance. This should make all views perfectly thread-safe (and\n cleaner).\n\n2009-10-21 Marco Pantaleoni \n\n * integrated sflib.finddata.find_package_data() in setup.py\n\n2009-10-07 Marco Pantaleoni \n\n * crud.py: added request, request full path, absolute URI, GET, POST\n and query string to default context for generic views.\n\n2009-04-14 Marco Pantaleoni \n\n * crud.py: added a compiled template caching mechanism to OO views.\n\n2009-03-27 panta \n\n * crud.py: added a reasonable post_delete_redirect support to\n DeleteObjectView.\n\n2009-03-16 panta \n\n * crud.py: added basic auth/perm checking to crud OO views.\n\n2009-02-21 panta \n\n * crud.py: fixed a bug in POPUP_VARIABLE (``_popup``) handling.\n\n2009-01-25 panta \n\n * crud.py: renamed ``append_to_context`` to ``populate_context``.\n\n2009-01-21 Marco Pantaleoni \n\n\t* crud.py: added class/instance defaults for view parameters.\n\n2009-01-20 Marco Pantaleoni \n\n\t* crud.py: added ``pre_call()`` method.\n\n2009-01-18 Marco Pantaleoni \n\n\t* crud.py: made ``/_edit.html`` and its variations\n\tthe default template name for create/update generic views. The old\n\t``_form.html`` versions are still used, but as a last resort.\n\n\t* crud.py: added support for softwarefabrica.django.common generic\n\ttemplates to generic views.\n\n2009-01-15 Marco Pantaleoni \n\n\t* version.py: modernized.\n\n\t* crud.py (GenericView): added ``instance_save_args()`` to let\n\tcustomization of the instance save() arguments in derived views.\n\n\t* crud.py (GenericView): added pre_ and post_ methods to save_instance(),\n\tdelete_instance(). Added ``request`` parameter to save_form(),\n\tsave_instance() and delete_instance().\n\n2008-12-25 Marco Pantaleoni \n\n\t* crud.py (View.append_to_context): fixed return address bug.\n\n2008-12-19 Marco Pantaleoni \n\n\t* added extensive documentation.\n\n2008-12-01 Marco Pantaleoni \n\n\t* bug fixes.\n\n2008-11-28 Marco Pantaleoni \n\n\t* softwarefabrica/django/crud/crud.py: integrated ForeignKey and\n\tManyToManyField popup handling.\n\n\t* Turned into a standalone setuptools distribution\n\t('softwarefabrica.django.crud').\n\n2008-10-29 Marco Pantaleoni \n\n\t* crud.py: added - Object-Oriented generic views and respective\n\tfunctional support adapters. Also present classes that add\n\t'fieldorder' support to ModelForms and templated forms.", "description_content_type": null, "docs_url": "https://pythonhosted.org/softwarefabrica.django.crud/", "download_url": "http://pypi.python.org/packages/source/s/softwarefabrica.django.crud/softwarefabrica.django.crud-1.0dev-BZR-r92-panta-elasticworld.org-20100503154915-oquvw7cswbvwnrvs.tar.gz", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://cheeseshop.python.org/pypi/softwarefabrica.django.crud/", "keywords": "crud generic views django softwarefabrica", "license": "GNU GPL v2", "maintainer": null, "maintainer_email": null, "name": "softwarefabrica.django.crud", "package_url": "https://pypi.org/project/softwarefabrica.django.crud/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/softwarefabrica.django.crud/", "project_urls": { "Download": "http://pypi.python.org/packages/source/s/softwarefabrica.django.crud/softwarefabrica.django.crud-1.0dev-BZR-r92-panta-elasticworld.org-20100503154915-oquvw7cswbvwnrvs.tar.gz", "Homepage": "http://cheeseshop.python.org/pypi/softwarefabrica.django.crud/" }, "release_url": "https://pypi.org/project/softwarefabrica.django.crud/1.0dev-BZR-r92-panta-elasticworld.org-20100503154915-oquvw7cswbvwnrvs/", "requires_dist": null, "requires_python": null, "summary": "Advanced CRUD generic views library for SoftwareFabrica django projects", "version": "1.0dev-BZR-r92-panta-elasticworld.org-20100503154915-oquvw7cswbvwnrvs" }, "last_serial": 799811, "releases": { "1.0dev-BZR-r61-panta-elasticworld.org-20081216105417-7eujtvxt76r11345": [ { "comment_text": "", "digests": { "md5": "853e871b4d238c591079831b49ff5d96", "sha256": "73e7f36634521f0e93a881b90bc8a89a6aac000703106c4468bcbaccf1ecfdd4" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r61_panta_elasticworld.org_20081216105417_7eujtvxt76r11345-py2.4.egg", "has_sig": false, "md5_digest": "853e871b4d238c591079831b49ff5d96", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 29554, "upload_time": "2008-12-17T09:47:17", "url": "https://files.pythonhosted.org/packages/c2/e7/60f36d39a164238b322300845eca33f55aab352e405bfc27bb6f9803ea8b/softwarefabrica.django.crud-1.0dev_BZR_r61_panta_elasticworld.org_20081216105417_7eujtvxt76r11345-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "51e01963f76c9b514188470533b353cc", "sha256": "9e2c2b41d14286f7e4b3b697c62fb9677d17a42307823f3d98618e87978eb580" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r61_panta_elasticworld.org_20081216105417_7eujtvxt76r11345-py2.5.egg", "has_sig": false, "md5_digest": "51e01963f76c9b514188470533b353cc", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 29316, "upload_time": "2008-12-16T13:11:49", "url": "https://files.pythonhosted.org/packages/b8/60/20cb1ff108ed8ffdbc5656e7ebfa0364220517913af640ada17f062577e3/softwarefabrica.django.crud-1.0dev_BZR_r61_panta_elasticworld.org_20081216105417_7eujtvxt76r11345-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "705ea1f90192a881ea5d33f43c87d814", "sha256": "61add5ddc198c79ce58a9d2eb3bdcc8970eb334910cb798ac6ac2375a35260c8" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r61_panta_elasticworld.org_20081216105417_7eujtvxt76r11345-py2.6.egg", "has_sig": false, "md5_digest": "705ea1f90192a881ea5d33f43c87d814", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 29252, "upload_time": "2008-12-17T15:24:55", "url": "https://files.pythonhosted.org/packages/2c/9b/aabbf76e94b1989ffafbd252e7133bafa5034f937764e880eda69470c636/softwarefabrica.django.crud-1.0dev_BZR_r61_panta_elasticworld.org_20081216105417_7eujtvxt76r11345-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "04e2c9f28a0c9cf90f02c05e82e33bb4", "sha256": "851023005de5571356b8e6926d3462b14a6aa8afbf0e0a98444932029345fa69" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev-BZR-r61-panta-elasticworld.org-20081216105417-7eujtvxt76r11345.tar.gz", "has_sig": false, "md5_digest": "04e2c9f28a0c9cf90f02c05e82e33bb4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24155, "upload_time": "2008-12-16T13:11:49", "url": "https://files.pythonhosted.org/packages/2a/1f/a336bbd262461ad5c22265663308233d2ef2bb1ef2b5417d79e08d10a812/softwarefabrica.django.crud-1.0dev-BZR-r61-panta-elasticworld.org-20081216105417-7eujtvxt76r11345.tar.gz" } ], "1.0dev-BZR-r62-panta-elasticworld.org-20081219124017-sg36t76fi229lmi2": [ { "comment_text": "", "digests": { "md5": "3e3db4ebadcd02eb5493cd082708e12a", "sha256": "5fdd5840785c6a8c76ca8ef84407d231560ae7d449d5c8e008d1991e903cd697" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r62_panta_elasticworld.org_20081219124017_sg36t76fi229lmi2-py2.4.egg", "has_sig": false, "md5_digest": "3e3db4ebadcd02eb5493cd082708e12a", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 29453, "upload_time": "2008-12-19T12:53:34", "url": "https://files.pythonhosted.org/packages/16/e1/dfe9b8e33c9c8f1ed9c926bc9c991019fac78278f7591fb61b5bb3b9aaa8/softwarefabrica.django.crud-1.0dev_BZR_r62_panta_elasticworld.org_20081219124017_sg36t76fi229lmi2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "0c7d0fa45c07c2bf720fa2db16e10ff7", "sha256": "a156a241c7ec6ec88286b07955b247091959863e8d3557ad9ba61bc8fa030975" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r62_panta_elasticworld.org_20081219124017_sg36t76fi229lmi2-py2.5.egg", "has_sig": false, "md5_digest": "0c7d0fa45c07c2bf720fa2db16e10ff7", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 29292, "upload_time": "2008-12-19T12:53:33", "url": "https://files.pythonhosted.org/packages/71/66/d1651a277ff2ad70fcf46a6980c282ac2f3aa5d548a044f1f67747c93599/softwarefabrica.django.crud-1.0dev_BZR_r62_panta_elasticworld.org_20081219124017_sg36t76fi229lmi2-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "8c06fd53b6feebec6c18abeed9320c4a", "sha256": "030d70050f31d7492687da41f3af9318cab5ef10304351f2ce9e3c25f5119180" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r62_panta_elasticworld.org_20081219124017_sg36t76fi229lmi2-py2.6.egg", "has_sig": false, "md5_digest": "8c06fd53b6feebec6c18abeed9320c4a", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 29178, "upload_time": "2008-12-19T12:53:37", "url": "https://files.pythonhosted.org/packages/b8/03/d32f976e2c528394997f7ffec2954ce7331bc01b5f04adc1d670ef70bb61/softwarefabrica.django.crud-1.0dev_BZR_r62_panta_elasticworld.org_20081219124017_sg36t76fi229lmi2-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "56eb66631c4edb2be4e146679b5d1408", "sha256": "61469e225bfa45f3811378233c7149ea6e28bbba1408dcca6640c15a40248f61" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev-BZR-r62-panta-elasticworld.org-20081219124017-sg36t76fi229lmi2.tar.gz", "has_sig": false, "md5_digest": "56eb66631c4edb2be4e146679b5d1408", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32984, "upload_time": "2008-12-19T12:53:32", "url": "https://files.pythonhosted.org/packages/73/0a/361c84d0e7a68306350712d5deb7ed2946a270eea1c57f27ecda259ea279/softwarefabrica.django.crud-1.0dev-BZR-r62-panta-elasticworld.org-20081219124017-sg36t76fi229lmi2.tar.gz" } ], "1.0dev-BZR-r77-panta-elasticworld.org-20090222105922-yunn2pjd0i7pyn8j": [ { "comment_text": "", "digests": { "md5": "b4e39c146b75d4800956178321d8c8ba", "sha256": "f9e05cb3157adf4d3c9802938ae9d771b3b6a92ea30d496edb70618926ead81b" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r77_panta_elasticworld.org_20090222105922_yunn2pjd0i7pyn8j-py2.4.egg", "has_sig": false, "md5_digest": "b4e39c146b75d4800956178321d8c8ba", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 30938, "upload_time": "2009-02-26T11:40:51", "url": "https://files.pythonhosted.org/packages/94/a3/aad78739f09bae59492024873c4b0c0845a3a4097945de34c40d6d87e453/softwarefabrica.django.crud-1.0dev_BZR_r77_panta_elasticworld.org_20090222105922_yunn2pjd0i7pyn8j-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "c50859cb6b248bc47b114d15d1a9a387", "sha256": "2d171547794036ef35dce1c65c7d5df7730c6c38c98be6f9e03c0445a0bf5bde" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r77_panta_elasticworld.org_20090222105922_yunn2pjd0i7pyn8j-py2.5.egg", "has_sig": false, "md5_digest": "c50859cb6b248bc47b114d15d1a9a387", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 30904, "upload_time": "2009-02-26T11:40:48", "url": "https://files.pythonhosted.org/packages/77/91/e44ecaf78d6a3671a1fe8446372fcc54a573b5b1b51df3603ed2f17b3851/softwarefabrica.django.crud-1.0dev_BZR_r77_panta_elasticworld.org_20090222105922_yunn2pjd0i7pyn8j-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "46f62aa31587dd2f4a86bea153118c73", "sha256": "d595ab27444f22a19edf37983cad726e0d37fd5dbb15764a3c333c7520a1d710" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r77_panta_elasticworld.org_20090222105922_yunn2pjd0i7pyn8j-py2.6.egg", "has_sig": false, "md5_digest": "46f62aa31587dd2f4a86bea153118c73", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 30788, "upload_time": "2009-02-26T11:40:57", "url": "https://files.pythonhosted.org/packages/db/b6/3bcdaa318ceffca5b42dcda4926554089503001d790bbd3f33a888004ca3/softwarefabrica.django.crud-1.0dev_BZR_r77_panta_elasticworld.org_20090222105922_yunn2pjd0i7pyn8j-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "838e8d161225914d4967255942bfe850", "sha256": "ff244bdbc467e2e176f9ea8ccb326fb5d1186836d3d0c78aa0ec52e2a622bfb4" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev-BZR-r77-panta-elasticworld.org-20090222105922-yunn2pjd0i7pyn8j.tar.gz", "has_sig": false, "md5_digest": "838e8d161225914d4967255942bfe850", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35308, "upload_time": "2009-02-26T11:40:46", "url": "https://files.pythonhosted.org/packages/d9/c3/f00396f18889838ddc9935b0f760ae1841620f2f9849c061e452b1d69d26/softwarefabrica.django.crud-1.0dev-BZR-r77-panta-elasticworld.org-20090222105922-yunn2pjd0i7pyn8j.tar.gz" } ], "1.0dev-BZR-r78-panta-elasticworld.org-20090304151556-lciccjm9w2sfzvdw": [ { "comment_text": "", "digests": { "md5": "696649b1c7183feff22b7f950f1874bc", "sha256": "ca1e91b2b1f164fc7824c37f1485aba6695670dcb84c50cf59508270caf65f83" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r78_panta_elasticworld.org_20090304151556_lciccjm9w2sfzvdw-py2.4.egg", "has_sig": false, "md5_digest": "696649b1c7183feff22b7f950f1874bc", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 31013, "upload_time": "2009-03-06T11:36:14", "url": "https://files.pythonhosted.org/packages/e9/f6/0a40d2b1b487461ce06c6a28679a6342795588464fa081ac2b4d9e173cda/softwarefabrica.django.crud-1.0dev_BZR_r78_panta_elasticworld.org_20090304151556_lciccjm9w2sfzvdw-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "30631de76dd4d310109f2e3ef074fcf0", "sha256": "a3d31ed18d615b7e9607e5e5763cec1fab03f4225000ae58c4bbe1ece349a0c6" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r78_panta_elasticworld.org_20090304151556_lciccjm9w2sfzvdw-py2.5.egg", "has_sig": false, "md5_digest": "30631de76dd4d310109f2e3ef074fcf0", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 30945, "upload_time": "2009-03-06T11:13:09", "url": "https://files.pythonhosted.org/packages/92/86/ea1cb46990f7f0e3751a358df76645578ddcfec4e88cede4a51e61cc7d97/softwarefabrica.django.crud-1.0dev_BZR_r78_panta_elasticworld.org_20090304151556_lciccjm9w2sfzvdw-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "aed56bcadf516c23967b445a7e989626", "sha256": "2d0ce6fbf75dcd06ec26d46da4d8bcd973c966e3104197e9f18bfea5b848bbad" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r78_panta_elasticworld.org_20090304151556_lciccjm9w2sfzvdw-py2.6.egg", "has_sig": false, "md5_digest": "aed56bcadf516c23967b445a7e989626", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 30831, "upload_time": "2009-03-06T11:36:19", "url": "https://files.pythonhosted.org/packages/a8/b2/3738a5b6ba34b28487d23d864f6dc4266efdd8b7a4468a69f749b9bafdf0/softwarefabrica.django.crud-1.0dev_BZR_r78_panta_elasticworld.org_20090304151556_lciccjm9w2sfzvdw-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "d3bc3d53bb10e94350ccfcd3f607f1e3", "sha256": "93518028afbf300af2b2558d6d0a0e54b7dfbc588220afe4fd9465465c29c98d" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev-BZR-r78-panta-elasticworld.org-20090304151556-lciccjm9w2sfzvdw.tar.gz", "has_sig": false, "md5_digest": "d3bc3d53bb10e94350ccfcd3f607f1e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36284, "upload_time": "2009-03-06T11:13:08", "url": "https://files.pythonhosted.org/packages/7d/cb/00cfbda4d702713c22df53b082acf58d02b5066a9cf5f9c690e394d3f736/softwarefabrica.django.crud-1.0dev-BZR-r78-panta-elasticworld.org-20090304151556-lciccjm9w2sfzvdw.tar.gz" } ], "1.0dev-BZR-r79-panta-elasticworld.org-20090316230356-bp41wibodhmypvep": [ { "comment_text": "", "digests": { "md5": "5f8975a2cc90e06131ab68eb654d2724", "sha256": "5fc02b196244f3cf6a80a8d0634499313c3ac4389b4e04b7227f54032ec9acd7" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r79_panta_elasticworld.org_20090316230356_bp41wibodhmypvep-py2.4.egg", "has_sig": false, "md5_digest": "5f8975a2cc90e06131ab68eb654d2724", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 31702, "upload_time": "2009-03-17T00:04:49", "url": "https://files.pythonhosted.org/packages/98/f5/647d0bdd8aa6c7e07280343fb640228f867ff5121b82b86893fa21ace81f/softwarefabrica.django.crud-1.0dev_BZR_r79_panta_elasticworld.org_20090316230356_bp41wibodhmypvep-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "2c53b24f2677c096db9be2763a23739a", "sha256": "10eac5362b2fca87ed41ee60b38ae062917d659e683f6c1168b81af67d7d86a6" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r79_panta_elasticworld.org_20090316230356_bp41wibodhmypvep-py2.5.egg", "has_sig": false, "md5_digest": "2c53b24f2677c096db9be2763a23739a", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 31597, "upload_time": "2009-03-17T00:04:47", "url": "https://files.pythonhosted.org/packages/dd/00/5587acc667470f070b029b9bdba98d8c4181f85450868df04639ec5a5d12/softwarefabrica.django.crud-1.0dev_BZR_r79_panta_elasticworld.org_20090316230356_bp41wibodhmypvep-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "0bdc6b07af519515443540863cb6265e", "sha256": "4ad8cb33ecc1028bf91dc2ffb6aba7abbbab6f37e185b3a078194c62d60d04bc" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r79_panta_elasticworld.org_20090316230356_bp41wibodhmypvep-py2.6.egg", "has_sig": false, "md5_digest": "0bdc6b07af519515443540863cb6265e", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 31493, "upload_time": "2009-03-17T00:04:55", "url": "https://files.pythonhosted.org/packages/54/c7/18d0a044fe226fbdd65456779cf4ebbb020025e540eceb26c2be99132ca2/softwarefabrica.django.crud-1.0dev_BZR_r79_panta_elasticworld.org_20090316230356_bp41wibodhmypvep-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "9684eaf58b23ff293aa7f624e7452ae0", "sha256": "601095ad6e3cb1c8d72c7f22fdb85bf3a72be3bcc564f0a58cfa9672192da46a" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev-BZR-r79-panta-elasticworld.org-20090316230356-bp41wibodhmypvep.tar.gz", "has_sig": false, "md5_digest": "9684eaf58b23ff293aa7f624e7452ae0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36852, "upload_time": "2009-03-17T00:04:43", "url": "https://files.pythonhosted.org/packages/17/d7/9b99fe9c1ca2a6cadd9377eacc6c74b2e9ee9d8fb9e8dc6c54405072797a/softwarefabrica.django.crud-1.0dev-BZR-r79-panta-elasticworld.org-20090316230356-bp41wibodhmypvep.tar.gz" } ], "1.0dev-BZR-r84-panta-elasticworld.org-20091007073637-gfco7xjadyly592r": [ { "comment_text": "", "digests": { "md5": "5827246fdb49168cab331bd49b301a20", "sha256": "aee3712383df9deaec6d4bb2119f8b2233701d63ba620044eeecf575e88ccc16" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r84_panta_elasticworld.org_20091007073637_gfco7xjadyly592r-py2.4.egg", "has_sig": false, "md5_digest": "5827246fdb49168cab331bd49b301a20", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 33179, "upload_time": "2009-10-07T09:37:33", "url": "https://files.pythonhosted.org/packages/7e/b0/fc11aa4bff41834198a87b07aca301c79af371773e6d7ebbdc523c4876af/softwarefabrica.django.crud-1.0dev_BZR_r84_panta_elasticworld.org_20091007073637_gfco7xjadyly592r-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "c204622bb31f55c6b79cb492196eb367", "sha256": "0675537bb3528e946fac13a5a2d8e8b1f74afb3219b190801d557189a2e5b656" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r84_panta_elasticworld.org_20091007073637_gfco7xjadyly592r-py2.5.egg", "has_sig": false, "md5_digest": "c204622bb31f55c6b79cb492196eb367", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 32954, "upload_time": "2009-10-07T09:37:31", "url": "https://files.pythonhosted.org/packages/c3/03/98b4c37118c324b1da275842b5a166b4edb461af484f362c5c8ece928f0a/softwarefabrica.django.crud-1.0dev_BZR_r84_panta_elasticworld.org_20091007073637_gfco7xjadyly592r-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "abae9e950f8c553887edca884e5af348", "sha256": "deddf58b0601454c79979858248bfd506321611a6367fe9da794540537fd4667" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r84_panta_elasticworld.org_20091007073637_gfco7xjadyly592r-py2.6.egg", "has_sig": false, "md5_digest": "abae9e950f8c553887edca884e5af348", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 32928, "upload_time": "2009-10-07T09:37:41", "url": "https://files.pythonhosted.org/packages/8a/07/1996bc0f5273dfb9ad74cecbd4a9938f7099e0a41e3361462b4da0cc8f6b/softwarefabrica.django.crud-1.0dev_BZR_r84_panta_elasticworld.org_20091007073637_gfco7xjadyly592r-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "3755535b0a11d49034d61a087aa1a3b6", "sha256": "5c12af815866e016cb8bf242f9f2fd02ec293521aabf3621a3721d99fc4d27c8" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev-BZR-r84-panta-elasticworld.org-20091007073637-gfco7xjadyly592r.tar.gz", "has_sig": false, "md5_digest": "3755535b0a11d49034d61a087aa1a3b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37944, "upload_time": "2009-10-07T09:37:30", "url": "https://files.pythonhosted.org/packages/dd/4f/2010ae91e71aeb74b0e434a7436d7ce80148c9182fbd467b741bf293a453/softwarefabrica.django.crud-1.0dev-BZR-r84-panta-elasticworld.org-20091007073637-gfco7xjadyly592r.tar.gz" } ], "1.0dev-BZR-r85-panta-elasticworld.org-20091013172434-v5h4f2kata25529p": [ { "comment_text": "", "digests": { "md5": "75b77ced5bd0e9b88bd10ed5b0843ba8", "sha256": "ba46b602d485697c9ccb4ebead153ffb6a63bc34025c48f46e159df611df492a" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r85_panta_elasticworld.org_20091013172434_v5h4f2kata25529p-py2.4.egg", "has_sig": false, "md5_digest": "75b77ced5bd0e9b88bd10ed5b0843ba8", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 34537, "upload_time": "2009-10-13T19:26:27", "url": "https://files.pythonhosted.org/packages/21/23/9e636a4c34f31d259d2eb50d2709b079bdf95bc2fb87831357ddb3cab21d/softwarefabrica.django.crud-1.0dev_BZR_r85_panta_elasticworld.org_20091013172434_v5h4f2kata25529p-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "09db32ddd7edf986c4d249417779a1d3", "sha256": "497f53eaba0023002d703eaccec08ca7107c94531d2bd1bc36f93b9dcbf7f285" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r85_panta_elasticworld.org_20091013172434_v5h4f2kata25529p-py2.5.egg", "has_sig": false, "md5_digest": "09db32ddd7edf986c4d249417779a1d3", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 34311, "upload_time": "2009-10-13T19:26:24", "url": "https://files.pythonhosted.org/packages/05/4b/4d7b761f9cbeaf53fa2b935042aeaff21931c2dd9e50c24d83cabc1ba9ad/softwarefabrica.django.crud-1.0dev_BZR_r85_panta_elasticworld.org_20091013172434_v5h4f2kata25529p-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "e27a30fc08a0c1b0ae31d90d65ac7c31", "sha256": "74e8d7ad19a7b946d283a527771844212423fbe45b5d77be2ce7f3d220c769c2" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r85_panta_elasticworld.org_20091013172434_v5h4f2kata25529p-py2.6.egg", "has_sig": false, "md5_digest": "e27a30fc08a0c1b0ae31d90d65ac7c31", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 34286, "upload_time": "2009-10-13T19:26:36", "url": "https://files.pythonhosted.org/packages/cc/c1/0a16938cfddf69442afa42dbc546970e23415aba1d91624d1253987a75a0/softwarefabrica.django.crud-1.0dev_BZR_r85_panta_elasticworld.org_20091013172434_v5h4f2kata25529p-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "85d5138a2185ae7680ea378daea78086", "sha256": "bbb5c6e73d878547e3888d3de78907a4c09149cf67da3490fd05ccc6da15d13e" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev-BZR-r85-panta-elasticworld.org-20091013172434-v5h4f2kata25529p.tar.gz", "has_sig": false, "md5_digest": "85d5138a2185ae7680ea378daea78086", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38805, "upload_time": "2009-10-13T19:26:23", "url": "https://files.pythonhosted.org/packages/57/f1/fcd1ada10b7f3a17838ce4b41bbab0fd668379d942c0954fcebad81f1187/softwarefabrica.django.crud-1.0dev-BZR-r85-panta-elasticworld.org-20091013172434-v5h4f2kata25529p.tar.gz" } ], "1.0dev-BZR-r86-panta-elasticworld.org-20091021152548-zgoskpkrxyu8fzpr": [ { "comment_text": "", "digests": { "md5": "dc72384ce797387f71b9a91984e75f63", "sha256": "499130a5013767fc7986a9ac1cacf8da94e653b0ec0cbdd97595ba24f3466700" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r86_panta_elasticworld.org_20091021152548_zgoskpkrxyu8fzpr-py2.5.egg", "has_sig": false, "md5_digest": "dc72384ce797387f71b9a91984e75f63", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 34893, "upload_time": "2009-10-21T17:26:32", "url": "https://files.pythonhosted.org/packages/3f/dd/ac48b929a3b25a7b7f64686aef201316e0d6b5b87a45a0fb8b311fdcbe55/softwarefabrica.django.crud-1.0dev_BZR_r86_panta_elasticworld.org_20091021152548_zgoskpkrxyu8fzpr-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "defe5cda34c50a552747b7afa188d8b0", "sha256": "d11c7a0a133ae980a50421d12fdd4b7b80425be2429ff63a24e5d2b856fc966e" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r86_panta_elasticworld.org_20091021152548_zgoskpkrxyu8fzpr-py2.6.egg", "has_sig": false, "md5_digest": "defe5cda34c50a552747b7afa188d8b0", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 34764, "upload_time": "2009-10-21T17:26:39", "url": "https://files.pythonhosted.org/packages/da/8e/5fec225a78b4f7967a16a0e83187c46bdd25831ac2e1683d7cc82c752003/softwarefabrica.django.crud-1.0dev_BZR_r86_panta_elasticworld.org_20091021152548_zgoskpkrxyu8fzpr-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "13f6ccdbb6cf543835307fd7f5e3a154", "sha256": "ed62ac3a70d78b78341ca8d6687226913ffb1c6cdf4c18fa3466cf4d8c540010" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev-BZR-r86-panta-elasticworld.org-20091021152548-zgoskpkrxyu8fzpr.tar.gz", "has_sig": false, "md5_digest": "13f6ccdbb6cf543835307fd7f5e3a154", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39008, "upload_time": "2009-10-21T17:26:31", "url": "https://files.pythonhosted.org/packages/2d/27/476551a07c853834ab766daeeebf12c44fd622b0724754c0cb75e75bcd80/softwarefabrica.django.crud-1.0dev-BZR-r86-panta-elasticworld.org-20091021152548-zgoskpkrxyu8fzpr.tar.gz" } ], "1.0dev-BZR-r88-panta-elasticworld.org-20091111104606-5frfch9m65s5r595": [ { "comment_text": "", "digests": { "md5": "7a3a8a4d1cb54ca3cbc4f3006e9f603b", "sha256": "9ba79199c9c43c85c08aca1b0b7b9de8239faa2739a2e63d414f630e9425b427" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r88_panta_elasticworld.org_20091111104606_5frfch9m65s5r595-py2.4.egg", "has_sig": false, "md5_digest": "7a3a8a4d1cb54ca3cbc4f3006e9f603b", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 37666, "upload_time": "2009-11-18T09:38:38", "url": "https://files.pythonhosted.org/packages/23/e8/2fedf6a43b2246ae49f68046df835e0d73288128891826e89d092ce8f5d8/softwarefabrica.django.crud-1.0dev_BZR_r88_panta_elasticworld.org_20091111104606_5frfch9m65s5r595-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "568b0f4589bef3645c4c964e20c92112", "sha256": "7d0e95136957f540f6f519cc4b08968c411c1a95613437c0300e328e42f49597" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r88_panta_elasticworld.org_20091111104606_5frfch9m65s5r595-py2.5.egg", "has_sig": false, "md5_digest": "568b0f4589bef3645c4c964e20c92112", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 37141, "upload_time": "2009-11-18T09:38:35", "url": "https://files.pythonhosted.org/packages/f2/06/595671ca4c2f6fdffc15df3b999a681717e693443875896576b2335d8ff4/softwarefabrica.django.crud-1.0dev_BZR_r88_panta_elasticworld.org_20091111104606_5frfch9m65s5r595-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "f4bce1a2f8c49b671484fcced1b603d4", "sha256": "3138b238fbcf211f67a93bf784afb60c68d580a350ac1c5c9d58885e74ab5e28" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r88_panta_elasticworld.org_20091111104606_5frfch9m65s5r595-py2.6.egg", "has_sig": false, "md5_digest": "f4bce1a2f8c49b671484fcced1b603d4", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 37107, "upload_time": "2009-11-18T09:38:48", "url": "https://files.pythonhosted.org/packages/4a/dd/07455e1458a3069e57add12517aa14eb4a5ccd7ed077896994416b748f54/softwarefabrica.django.crud-1.0dev_BZR_r88_panta_elasticworld.org_20091111104606_5frfch9m65s5r595-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "7694cf4dd74679f906c551ff514be0fa", "sha256": "7a18a93a9404ad2b4d610c479f946799c4bba029fbd61b508dd7290f5e7c9dd4" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev-BZR-r88-panta-elasticworld.org-20091111104606-5frfch9m65s5r595.tar.gz", "has_sig": false, "md5_digest": "7694cf4dd74679f906c551ff514be0fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40298, "upload_time": "2009-11-18T09:38:34", "url": "https://files.pythonhosted.org/packages/a5/09/ed6b35951a45d462ec5c909f1a988bf44dfe8223254d04ea30227364e0f6/softwarefabrica.django.crud-1.0dev-BZR-r88-panta-elasticworld.org-20091111104606-5frfch9m65s5r595.tar.gz" } ], "1.0dev-BZR-r90-panta-elasticworld.org-20091124105334-sfii6ytnur3a7aec": [ { "comment_text": "", "digests": { "md5": "564eaddda125709a4123fc83348f12af", "sha256": "023181b32388955743e81fa9456efd16c285377bfef9f5ca3fe7d76236a50ff3" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r90_panta_elasticworld.org_20091124105334_sfii6ytnur3a7aec-py2.4.egg", "has_sig": false, "md5_digest": "564eaddda125709a4123fc83348f12af", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 37692, "upload_time": "2009-11-24T11:54:09", "url": "https://files.pythonhosted.org/packages/74/4b/5a36adfbc563078bbd0fffe20eb49d632ebd85d71a79c4830049ef6df36e/softwarefabrica.django.crud-1.0dev_BZR_r90_panta_elasticworld.org_20091124105334_sfii6ytnur3a7aec-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "0e569dde014b7e4b79f4819135f6b82e", "sha256": "6bdddfdcd4a130a787037fd036e295c8bf9d9923c5086dbbde1e7c86b7024e37" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r90_panta_elasticworld.org_20091124105334_sfii6ytnur3a7aec-py2.5.egg", "has_sig": false, "md5_digest": "0e569dde014b7e4b79f4819135f6b82e", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 37170, "upload_time": "2009-11-24T11:54:02", "url": "https://files.pythonhosted.org/packages/41/23/2181820ae4a0b94ddced0936115d79cb0a270bdc90dd65396eb4b6cec4b1/softwarefabrica.django.crud-1.0dev_BZR_r90_panta_elasticworld.org_20091124105334_sfii6ytnur3a7aec-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "bb4d7915858493c98a85e84e08237587", "sha256": "5f90e953e3a328990dfb3183bbfa90fc800f96c45f005d43a3d68c8079a88a98" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r90_panta_elasticworld.org_20091124105334_sfii6ytnur3a7aec-py2.6.egg", "has_sig": false, "md5_digest": "bb4d7915858493c98a85e84e08237587", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 37134, "upload_time": "2009-11-24T11:54:19", "url": "https://files.pythonhosted.org/packages/5a/fe/1230301e06e62cfb0bab54cf2067208951f9a16f4bf614695c45d0ffad2e/softwarefabrica.django.crud-1.0dev_BZR_r90_panta_elasticworld.org_20091124105334_sfii6ytnur3a7aec-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "47d937a72c7c57d54920f95a0731fc10", "sha256": "ebb0f245327b037bc10dbd9c67ea9c6c104a64b4b0d83be65d65558fec65f16e" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev-BZR-r90-panta-elasticworld.org-20091124105334-sfii6ytnur3a7aec.tar.gz", "has_sig": false, "md5_digest": "47d937a72c7c57d54920f95a0731fc10", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40370, "upload_time": "2009-11-24T11:54:01", "url": "https://files.pythonhosted.org/packages/32/d8/5c4f6d58d98032a41e20cb688fa64aa1f67d7649ebbc12527006e750a04e/softwarefabrica.django.crud-1.0dev-BZR-r90-panta-elasticworld.org-20091124105334-sfii6ytnur3a7aec.tar.gz" } ], "1.0dev-BZR-r92-panta-elasticworld.org-20100503154915-oquvw7cswbvwnrvs": [ { "comment_text": "", "digests": { "md5": "10360a1257f54b413d3caf0c6bf8789c", "sha256": "d9af69c2c44f5b5d3cc83ea06c68ec35b93d2bff73b719e29e11c94737f4e95b" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r92_panta_elasticworld.org_20100503154915_oquvw7cswbvwnrvs-py2.4.egg", "has_sig": false, "md5_digest": "10360a1257f54b413d3caf0c6bf8789c", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 37750, "upload_time": "2010-06-10T11:12:16", "url": "https://files.pythonhosted.org/packages/b7/4b/2ad88a930133e2709b9e7a80676eb7118d8d46d51d2647f6793e61d9ae50/softwarefabrica.django.crud-1.0dev_BZR_r92_panta_elasticworld.org_20100503154915_oquvw7cswbvwnrvs-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "45c6f48ba714f50961884053b02c9f7c", "sha256": "0b4c75a674e142673c16dd892b252f286ecab8b9ede0911a37b5e928b9a38389" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r92_panta_elasticworld.org_20100503154915_oquvw7cswbvwnrvs-py2.5.egg", "has_sig": false, "md5_digest": "45c6f48ba714f50961884053b02c9f7c", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 37221, "upload_time": "2010-06-10T11:12:12", "url": "https://files.pythonhosted.org/packages/a6/f7/a737e6d9cfde673b65c1930acf20e0b3ff0bd3f3811131607073c873b3ed/softwarefabrica.django.crud-1.0dev_BZR_r92_panta_elasticworld.org_20100503154915_oquvw7cswbvwnrvs-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "cc0c42158d0616339984ad553563cc73", "sha256": "4aa798332b80db26dfcc874be8a11c3f4cece22913d5cb5434d7dae8d42cc2bd" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r92_panta_elasticworld.org_20100503154915_oquvw7cswbvwnrvs-py2.6.egg", "has_sig": false, "md5_digest": "cc0c42158d0616339984ad553563cc73", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 37189, "upload_time": "2010-06-10T11:12:26", "url": "https://files.pythonhosted.org/packages/51/b4/121634b264d5ab43672668bff727c9b45e39cbf5413efceed0f8edcdd912/softwarefabrica.django.crud-1.0dev_BZR_r92_panta_elasticworld.org_20100503154915_oquvw7cswbvwnrvs-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "3957fbfd356563c35e1a2603eee1453d", "sha256": "b4783d33f2a632c8d3d4bfe279f6ce023c07b93da78195bb72df5986afaa03fb" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev-BZR-r92-panta-elasticworld.org-20100503154915-oquvw7cswbvwnrvs.tar.gz", "has_sig": false, "md5_digest": "3957fbfd356563c35e1a2603eee1453d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40414, "upload_time": "2010-06-10T11:12:12", "url": "https://files.pythonhosted.org/packages/80/8f/932d87548fb1fa3dc3a06bd71948862e7f6dfa94f8ccd1599624eb5150be/softwarefabrica.django.crud-1.0dev-BZR-r92-panta-elasticworld.org-20100503154915-oquvw7cswbvwnrvs.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "10360a1257f54b413d3caf0c6bf8789c", "sha256": "d9af69c2c44f5b5d3cc83ea06c68ec35b93d2bff73b719e29e11c94737f4e95b" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r92_panta_elasticworld.org_20100503154915_oquvw7cswbvwnrvs-py2.4.egg", "has_sig": false, "md5_digest": "10360a1257f54b413d3caf0c6bf8789c", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 37750, "upload_time": "2010-06-10T11:12:16", "url": "https://files.pythonhosted.org/packages/b7/4b/2ad88a930133e2709b9e7a80676eb7118d8d46d51d2647f6793e61d9ae50/softwarefabrica.django.crud-1.0dev_BZR_r92_panta_elasticworld.org_20100503154915_oquvw7cswbvwnrvs-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "45c6f48ba714f50961884053b02c9f7c", "sha256": "0b4c75a674e142673c16dd892b252f286ecab8b9ede0911a37b5e928b9a38389" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r92_panta_elasticworld.org_20100503154915_oquvw7cswbvwnrvs-py2.5.egg", "has_sig": false, "md5_digest": "45c6f48ba714f50961884053b02c9f7c", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 37221, "upload_time": "2010-06-10T11:12:12", "url": "https://files.pythonhosted.org/packages/a6/f7/a737e6d9cfde673b65c1930acf20e0b3ff0bd3f3811131607073c873b3ed/softwarefabrica.django.crud-1.0dev_BZR_r92_panta_elasticworld.org_20100503154915_oquvw7cswbvwnrvs-py2.5.egg" }, { "comment_text": "", "digests": { "md5": "cc0c42158d0616339984ad553563cc73", "sha256": "4aa798332b80db26dfcc874be8a11c3f4cece22913d5cb5434d7dae8d42cc2bd" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev_BZR_r92_panta_elasticworld.org_20100503154915_oquvw7cswbvwnrvs-py2.6.egg", "has_sig": false, "md5_digest": "cc0c42158d0616339984ad553563cc73", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 37189, "upload_time": "2010-06-10T11:12:26", "url": "https://files.pythonhosted.org/packages/51/b4/121634b264d5ab43672668bff727c9b45e39cbf5413efceed0f8edcdd912/softwarefabrica.django.crud-1.0dev_BZR_r92_panta_elasticworld.org_20100503154915_oquvw7cswbvwnrvs-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "3957fbfd356563c35e1a2603eee1453d", "sha256": "b4783d33f2a632c8d3d4bfe279f6ce023c07b93da78195bb72df5986afaa03fb" }, "downloads": -1, "filename": "softwarefabrica.django.crud-1.0dev-BZR-r92-panta-elasticworld.org-20100503154915-oquvw7cswbvwnrvs.tar.gz", "has_sig": false, "md5_digest": "3957fbfd356563c35e1a2603eee1453d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40414, "upload_time": "2010-06-10T11:12:12", "url": "https://files.pythonhosted.org/packages/80/8f/932d87548fb1fa3dc3a06bd71948862e7f6dfa94f8ccd1599624eb5150be/softwarefabrica.django.crud-1.0dev-BZR-r92-panta-elasticworld.org-20100503154915-oquvw7cswbvwnrvs.tar.gz" } ] }