{ "info": { "author": "Pablo Martin", "author_email": "goinnn@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Framework :: Django", "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3" ], "description": ".. contents::\n\n===============================\ndjango-inplaceedit-extra-fields\n===============================\n\nInformation\n===========\n\n.. image:: https://badge.fury.io/py/django-inplaceedit-extra-fields.png\n :target: https://badge.fury.io/py/django-inplaceedit-extra-fields\n\n\ndjango-inplaceedit-extra-fields is a Django application that adds other useful fields to `django-inplaceedit `_ .\n\nIt is distributed under the terms of the `GNU Lesser General Public\nLicense `_.\n\nRequirements\n============\n\n * `django-inplaceedit `_ (>= 1.4.1)\n\nAnd other packages, depending on which fields you want to use (see below).\n\n\nDemo (this video use a very old version of django-inplaceedit and django-inplaceedit-extra-fields)\n==================================================================================================\n\nVideo Demo, of `django-inplaceedit `_, django-inplaceedit-extra-fields and `django-inlinetrans `_ (Set full screen mode to view it correctly)\n\n\n.. image:: https://github.com/Yaco-Sistemas/django-inplaceedit/raw/master/video-frame.png\n :target: http://www.youtube.com/watch?v=_EjisXtMy_Y?t=34s\n\n\n\nInstallation\n============\n\nAfter installing `django-inplaceedit egg`_\n\n\n.. _`django-inplaceedit egg`: https://django-inplaceedit.readthedocs.org/en/latest/install.html\n\n\nIn your settings.py\n-------------------\n\n::\n\n INSTALLED_APPS = (\n 'django.contrib.auth',\n 'django.contrib.contenttypes',\n 'django.contrib.sessions',\n 'django.contrib.sites',\n 'django.contrib.admin',\n #.....................#\n 'inplaceeditform',\n 'inplaceeditform_extra_fields',\n )\n\nIf you want to overwrite the adaptors for all cases in your project:\n\n::\n\n ADAPTOR_INPLACEEDIT = {'textarea': 'inplaceeditform_extra_fields.fields.AdaptorTinyMCEField',\n #'textarea': 'inplaceeditform_extra_fields.fields.AdaptorSimpleTinyMCEField',\n 'image': 'inplaceeditform_extra_fields.fields.AdaptorImageThumbnailField',\n 'fk': 'inplaceeditform_extra_fields.fields.AdaptorAutoCompleteForeingKeyField',\n 'm2mcomma': 'inplaceeditform_extra_fields.fields.AdaptorAutoCompleteManyToManyField'}\n\nIf you want, you can register these fields in your settings with different keys:\n\n::\n\n ADAPTOR_INPLACEEDIT = {'auto_fk': 'inplaceeditform_extra_fields.fields.AdaptorAutoCompleteForeingKeyField',\n 'auto_m2m': 'inplaceeditform_extra_fields.fields.AdaptorAutoCompleteManyToManyField',\n 'image_thumb': 'inplaceeditform_extra_fields.fields.AdaptorImageThumbnailField',\n 'tiny': 'inplaceeditform_extra_fields.fields.AdaptorTinyMCEField',\n 'tiny_simple': 'inplaceeditform_extra_fields.fields.AdaptorSimpleTinyMCEField'}\n\nAnd after that, to want use a specific adaptor you can pass it to the templatetag, e.g.:\n\n::\n\n {% inplace_edit \"content.field_name\" adaptor=\"tiny\" %}\n\n\nWhy these fields are not in django-inplaceedit?\n===============================================\n\n * They depend on the other eggs\n * They are a specific solution\n * These do not work immediately, you have to code them\n\n\nAdaptorAutoCompleteForeingKeyField and AdaptorAutoCompleteManyToManyField\n=========================================================================\n\nThese fields depend on `django-ajax-selects (1.3.6) `_. You have to create a channel (lookup)\n\n::\n\n {% inplace_edit \"content.field_name\" adaptor=\"auto_fk\", lookup=\"my_lookup\" %}\n\nFor more info, visit the `doc of django-ajax-selects `_\n\nIt is recomended you overwrite the following templates:\n\n * `inc.css_library.html `_\n * `inc.js_library.html `_\n\nAdaptorImageThumbnailField\n==========================\n\nThis field depends on `sorl-thumbnail (12.3) `_. You just need to specify the thumb size.\n\n::\n\n {% inplace_edit \"content.field_name\" adaptor=\"image_thumb\", size=\"16x16\" %}\n\nIt can help you, configure in your settings:\n\n::\n\n THUMBNAIL_DEBUG = True\n\n\nFor more info, visit the `doc of sorl-thumbnail `_\n\n\nAdaptorTinyMCEField and AdaptorSimpleTinyMCEField\n=================================================\n\n::\n\n {% inplace_edit \"content.field_name\" adaptor=\"tiny\" %}\n or \n {% inplace_edit \"content.field_name\" adaptor=\"tiny_simple\" %}\n\n\n.. note:: \n\n We use tinyMCE 4.0 without changes (from django-inplaceedit-extra-fields==0.3.0), if you want to use another version (4.X) of tinyMCE set INPLACE_TINYMCE_JS in your settings.\n\n\n::\n\n INPLACE_TINYMCE_JS = '/my/path/of/tinyMCE'\n\n\nIf you want to use a tinyMCE 3.X, please use `django-inplaceedit-extra-fields==0.2.4 `_\n\n\nTesting\n=======\n\nYou can test it with the `testing project of django-inplaceedit `_ or with the `testing project of django-inplaceedit-bootstrap `_ \n\n\nDevelopment\n===========\n\nYou can get the bleeding edge version of django-inplaceedit-extra-fields by doing a clone\nof its repository::\n\n git clone git@github.com:django-inplaceedit/django-inplaceedit-extra-fields.git\n\n\n\n0.7.1 (2016-04-22)\n===================\n\n* Fix tinyMCE url warning\n\n0.7.0 (2016-04-21)\n===================\n\n* Django 1.9 suport: Thanks to `Paul Stenius `_\n\n0.6.1 (2015-08-30)\n===================\n\n* Detail\n\n0.6.0 (2015-08-30)\n===================\n\n* Django 1.7 and Django 1.8 suport\n* Python 3 support for every adaptor\n* Upgrade tinyMCE version\n* Upgrade django-ajax-select version\n* Upgrade jQuery-ui version (used in AdaptorAutoCompleteForeingKeyField AdaptorAutoCompleteManyToManyField)\n* Upgrade sorl-thumbnail\n\n\n0.5.0 (2013-10-04)\n===================\n\n* Support to python2.6 (this was not supported from django-inplaceedit-extra-fields>=0.0.9 to django-inplaceedit-extra-fields<0.5.0)\n\n\n0.4.1 (2013-09-17)\n===================\n\n* Improvements in AdaptorSimpleTinyMCEField and AdaptorTinyMCEField\n\n\n0.4.0 (2013-09-17)\n===================\n\n* Add AdaptorSimpleTinyMCEField adaptor\n\n0.3.2 (2013-09-17)\n===================\n\n* Improvements in the README file\n\n0.3.1 (2013-09-17)\n===================\n\n* Improvements in the README file\n\n0.3.0 (2013-09-16)\n===================\n\n* AdaptorTinyMCEField now use **tinyMCE 4.X**\n* Not the AdaptorTinyMCEField, AdaptorAutoCompleteForeingKeyField and AdaptorAutoCompleteManyToManyField use the static file recolector, new in django-inplaceedit==1.2.1\n\n\n0.2.4 (2013-10-04)\n===================\n\n* Support to python2.6 (this was not supported from django-inplaceedit-extra-fields>=0.0.9 to django-inplaceedit-extra-fields<=0.2.3)\n\n\n0.2.3 (2013-09-17)\n===================\n\n* Improvements in the README file\n\n0.2.2 (2013-09-17)\n===================\n\n* Improvements in the README file\n\n0.2.1 (2013-09-15)\n===================\n\n* Fix an error in AdaptorTinyMCEField when the inplace edit item was very little (its width was very little)\n* Update the tinyMCE to last version (3.X)\n\n0.2.0 (2013-09-10)\n===================\n\n* Improvements in AdaptorTinyMCEField, and adapt the code to the new features of django-inplaceedit==1.2\n* Improvements in the README file\n\n0.1.1 (2013-09-06)\n===================\n\n* Update the metainfo\n\n0.1.0 (2013-09-05)\n===================\n\n* Fix an error in IE browser with the AdaptorTinyMCEField\n\n0.0.9 (2013-09-05)\n===================\n\n* Python 3 compatible (Only AdaptorTinyMCEField, django-ajax-fields and sorl.thumbnail are not python3 compatibles)\n* django-inplaceedit (1.0.0) compatible\n* django 1.2 support\n* Improvements in the README\n* Fix some details\n* Fix some grammar in README: Thanks to `Flavio Curella `_\n\n0.0.8 (2012-11-12)\n===================\n\n* Fix a little error of the tinyMCE adaptor: Thanks to `Yuego `_\n\n0.0.7 (2012-08-21)\n===================\n\n* Improve the tinyMCE field, modify the settings of the tinyMCE for can do a real inplaceedit, the layout must be the same with the tinyMCE and with a piece of HTML:\n * Now The tinyMCE automatically load the css of the view\n * Create a normalize css, there is a problem with the first element of the documents of the iframe\n * Now you can overwrite the extra_mce_settings from settings\n * Now I can load some css and not load the content.css of the tinyMCE\n * Remove the csmutils dependence\n * Adapt the code to the new option in django-inplaceedit (autosave)\n * Improve the inplace_edit plugin of the tinyMCE editor \n * Update tinyMCE to last release\n\n0.0.6 (2012-05-22)\n===================\n\n* Uncouple cmsutils of the tinyMCE widget overwriting two methods\n\n\n0.0.5 (2012-05-22)\n===================\n\n* Now django-inplaceedit-extra-fields managing `static files `_ (backward compatible)\n\n0.0.4 (2011-12-13)\n===================\n\n* Fixes a error in tinyMCE adaptor when the user has not edit permission\n* Add MANIFEST.in. Until now, the egg is impossible that work\n\n0.0.3 (2011-12-09)\n===================\n\n* More easy overwrite the jquery-ui\n* More clean the code of tiny field\n\n0.0.2 (2011-12-08)\n===================\n\n* Complete the README\n\n\n0.0.1 (2011-12-08)\n===================\n\n* First version to AdaptorAutoCompleteForeingKeyField and AdaptorAutoCompleteManyToManyField\n* First version to AdaptorImageThumbnailField\n* First version to AdaptorTinyMCEField", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/django-inplaceedit/django-inplaceedit-extra-fields", "keywords": "django,inplace,inline edit,inline form,inline,inplace edit,inplace form,ajax,tinymce,autocomplete,thumbnail", "license": "LGPL 3", "maintainer": null, "maintainer_email": null, "name": "django-inplaceedit-extra-fields", "package_url": "https://pypi.org/project/django-inplaceedit-extra-fields/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/django-inplaceedit-extra-fields/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/django-inplaceedit/django-inplaceedit-extra-fields" }, "release_url": "https://pypi.org/project/django-inplaceedit-extra-fields/0.7.1/", "requires_dist": null, "requires_python": null, "summary": "Django application that adds other useful fields to Django inplace edit", "version": "0.7.1" }, "last_serial": 2077781, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "7bffab1403b239b2e1dd9da3180678ed", "sha256": "948f701f1bfc40adfdcf5446901dd3d367c0941635e7ab7eb0595b23f5fc2ba1" }, "downloads": -1, "filename": "django-inplaceedit-extra-fields-0.0.1.tar.gz", "has_sig": false, "md5_digest": "7bffab1403b239b2e1dd9da3180678ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4819, "upload_time": "2011-12-08T16:58:17", "url": "https://files.pythonhosted.org/packages/cc/ed/fbc80c9155ca22f36c5f13592264bf7076ab6d7637763271f7d602358a4d/django-inplaceedit-extra-fields-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "79aaf3167133d597453f24029e436176", "sha256": "cb3fd589e6f7b572c9f9df73defd23881bed3023a7073c2bcd9489486f5cc934" }, "downloads": -1, "filename": "django-inplaceedit-extra-fields-0.0.2.tar.gz", "has_sig": false, "md5_digest": "79aaf3167133d597453f24029e436176", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4978, "upload_time": "2011-12-08T20:15:24", "url": "https://files.pythonhosted.org/packages/2c/1d/4cdad8c0e10fa75efc6edaf2420c6476b981b4c9dec50cb4e18ac9c29492/django-inplaceedit-extra-fields-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "767fc62301f187818a9b838828888eef", "sha256": "a7efe77709230a451310bdcf74f4a922967278941675214b42000f3111596d49" }, "downloads": -1, "filename": "django-inplaceedit-extra-fields-0.0.3.tar.gz", "has_sig": false, "md5_digest": "767fc62301f187818a9b838828888eef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5111, "upload_time": "2011-12-09T18:21:31", "url": "https://files.pythonhosted.org/packages/58/ed/6160e62c6a271833298f309795825848cc0721e75e3a3c640ffa17d4eebf/django-inplaceedit-extra-fields-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "33a7a358ceb89d2da57f06c5c7bc0d26", "sha256": "3f4712a77662b8487e4f59e3de1c4218eb7412ac0c81de1ec8299091ed4721f7" }, "downloads": -1, "filename": "django-inplaceedit-extra-fields-0.0.4.tar.gz", "has_sig": false, "md5_digest": "33a7a358ceb89d2da57f06c5c7bc0d26", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7006, "upload_time": "2011-12-13T13:30:32", "url": "https://files.pythonhosted.org/packages/55/b2/5a6ef06e67bb1c27b24d3200104ddbf996f4bfd0fe3d3c673c030d77cb6b/django-inplaceedit-extra-fields-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "dea5eb3c4e28ad5404a504ee0853dcde", "sha256": "6d06d3e33e60808fa611a6b9bb181ac234b941d4cde1b6614697beca6c860616" }, "downloads": -1, "filename": "django-inplaceedit-extra-fields-0.0.5.tar.gz", "has_sig": false, "md5_digest": "dea5eb3c4e28ad5404a504ee0853dcde", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7274, "upload_time": "2012-05-22T14:50:59", "url": "https://files.pythonhosted.org/packages/d2/85/824e0f447e39e4525b8d2c566e5835c1ff446eb4b231e35608aef0d041e4/django-inplaceedit-extra-fields-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "29484161bdb343b650b9251db3d1fa36", "sha256": "1d1482537bfa61c684803cbc36ed37ccffa817336b8aa34f3a0fe71c252a2744" }, "downloads": -1, "filename": "django-inplaceedit-extra-fields-0.0.6.tar.gz", "has_sig": false, "md5_digest": "29484161bdb343b650b9251db3d1fa36", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7363, "upload_time": "2012-05-22T15:56:24", "url": "https://files.pythonhosted.org/packages/ef/e2/c82a77c8713c8bad4b9244bd65caf3cce6d689e7828926759c8fe699971b/django-inplaceedit-extra-fields-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "420d20905147b95151573e4ba609062b", "sha256": "6ac5098d20f238c127c65b574b6df636fd17b9ed924335f4b0cb8e8f7b74c503" }, "downloads": -1, "filename": "django-inplaceedit-extra-fields-0.0.7.tar.gz", "has_sig": false, "md5_digest": "420d20905147b95151573e4ba609062b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 575231, "upload_time": "2012-08-21T11:52:36", "url": "https://files.pythonhosted.org/packages/7a/6a/42d778102032124e78bbd984dac78ba4036a86b0a4555884cfe63357d91c/django-inplaceedit-extra-fields-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "5bc5a7e1bf3445054c2f92939abdf239", "sha256": "476e4edd29c280ba2af5c340299938bc84982e46746a267bf7e44b2af08555d2" }, "downloads": -1, "filename": "django-inplaceedit-extra-fields-0.0.8.tar.gz", "has_sig": false, "md5_digest": "5bc5a7e1bf3445054c2f92939abdf239", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 575217, "upload_time": "2012-11-12T14:17:56", "url": "https://files.pythonhosted.org/packages/85/ea/23bf4015edc6d5a0a660ede6179457c56643580c56ec2ccf66bd827240dc/django-inplaceedit-extra-fields-0.0.8.tar.gz" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "3216a071fbfdcc1adbe69f7d29222b7c", "sha256": "46a281b7ffd9788eea4ae0ae155932d47c4f96767d956501f1a2ae3f1639c8d3" }, "downloads": -1, "filename": "django-inplaceedit-extra-fields-0.0.9.tar.gz", "has_sig": false, "md5_digest": "3216a071fbfdcc1adbe69f7d29222b7c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 573392, "upload_time": "2013-09-05T11:52:44", "url": "https://files.pythonhosted.org/packages/15/5f/bd34c691c42cacfcf3b8858bcf6c6077d352b5e1466a93f1a4b5e178d443/django-inplaceedit-extra-fields-0.0.9.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "dd3d88eb10bd82c3fe1d9903abfe82b7", "sha256": "5f64b595968a530bc51d4d69bca9b5a77038f675e75ac91cb1146c8ea012bc81" }, "downloads": -1, "filename": "django-inplaceedit-extra-fields-0.1.0.tar.gz", "has_sig": false, "md5_digest": "dd3d88eb10bd82c3fe1d9903abfe82b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 573373, "upload_time": "2013-09-05T12:51:49", "url": "https://files.pythonhosted.org/packages/63/c7/b230eadbdaf649b43beffdd7d855b5e16c4a1585cd491b7849acf2be9f97/django-inplaceedit-extra-fields-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "69b8bfb404a0d0a57a0e9d6c6aaf51b7", "sha256": "8b323cdb5502851e956bc2b2ae9ef117917d539fb6b519bb9b4ecf8f6d1d21f3" }, "downloads": -1, "filename": "django-inplaceedit-extra-fields-0.1.1.tar.gz", "has_sig": false, "md5_digest": "69b8bfb404a0d0a57a0e9d6c6aaf51b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 573517, "upload_time": "2013-09-06T12:18:07", "url": "https://files.pythonhosted.org/packages/72/46/07ef43abc47783ef76651b4920efc51623fc94627c931a74db8ca0cfe78d/django-inplaceedit-extra-fields-0.1.1.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "b643bee77c3f137157a177215c3694d7", "sha256": "4b155f627b43c31a613598027320c785edb735a6738309b292c8ac81cbf8e6f2" }, "downloads": -1, "filename": "django-inplaceedit-extra-fields-0.2.0.tar.gz", "has_sig": false, "md5_digest": "b643bee77c3f137157a177215c3694d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 573965, "upload_time": "2013-09-10T12:37:16", "url": "https://files.pythonhosted.org/packages/66/bf/cad368f57fd145e4aefe2c5d675bcb1671397fdd30957231f964756afc0a/django-inplaceedit-extra-fields-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "44622621d8b6f66cd5befeb28b1bf478", "sha256": "d9608aa3ad2de209b8bf650bfc0f3ecaa25448844fdc9f4dfe74a424c4a241c8" }, "downloads": -1, "filename": "django-inplaceedit-extra-fields-0.2.1.tar.gz", "has_sig": false, "md5_digest": "44622621d8b6f66cd5befeb28b1bf478", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 578825, "upload_time": "2013-09-15T09:29:33", "url": "https://files.pythonhosted.org/packages/4c/88/29fb893a1f5ea19b9857e5bab7d997c1309fe328c9a2b730f9f3d2c92dde/django-inplaceedit-extra-fields-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "4f8a0cf4c48619f99b4acd0dbb92bb62", "sha256": "a0ccc9e714e6d0e651dba87f0f1a5168f10530c182acd2d8dfb1d319e4117d01" }, "downloads": -1, "filename": "django-inplaceedit-extra-fields-0.2.2.tar.gz", "has_sig": false, "md5_digest": "4f8a0cf4c48619f99b4acd0dbb92bb62", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 578762, "upload_time": "2013-09-17T09:09:13", "url": "https://files.pythonhosted.org/packages/24/f6/3b9b9f90e54da97174dd149e5cf5952a2a01220acc3439aabfa8ededc3e7/django-inplaceedit-extra-fields-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "16d245aacd2221995787b16d4d2ec914", "sha256": "59d7a01db557c8fd304d90a003c32eca275185d2393db3020fdcae0090dadbf2" }, "downloads": -1, "filename": "django-inplaceedit-extra-fields-0.2.3.tar.gz", "has_sig": false, "md5_digest": "16d245aacd2221995787b16d4d2ec914", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 578768, "upload_time": "2013-09-17T09:17:06", "url": "https://files.pythonhosted.org/packages/f6/27/83d60c767808786ca3f8246b8427fb24367c880f4a3a67a938d322a5ebdf/django-inplaceedit-extra-fields-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "44b58c8f607b6dabf421e6dfb4832ede", "sha256": "1c4eca032a954744a3a09d205c4929acae4b3947ecb1a55db84221baa524ed90" }, "downloads": -1, "filename": "django-inplaceedit-extra-fields-0.2.4.tar.gz", "has_sig": false, "md5_digest": "44b58c8f607b6dabf421e6dfb4832ede", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 578961, "upload_time": "2013-10-04T18:30:07", "url": "https://files.pythonhosted.org/packages/9f/30/40aef22139d9d9070dc2b5c2b10ae2dae1ce4aab476f5abc5351a8dbda37/django-inplaceedit-extra-fields-0.2.4.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "185ebaa92a7f7faa791353340c658623", "sha256": "7d4f317d54cf869a33fba661dee776aa8154e862aac7f0ae1d505c9e5033f045" }, "downloads": -1, "filename": "django-inplaceedit-extra-fields-0.3.0.tar.gz", "has_sig": false, "md5_digest": "185ebaa92a7f7faa791353340c658623", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12865, "upload_time": "2013-09-17T08:52:57", "url": "https://files.pythonhosted.org/packages/21/65/29b60e4336ed19ff18b46c7e2b0bd6df47765094f734f94c2fd1ffa2830b/django-inplaceedit-extra-fields-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "6b3ac33718b571e489f8a810102eb57f", "sha256": "9a14c8eb11a1e5e0e13dc1f0bcdfbf0df8db196e0565c41f479784cd7529e73b" }, "downloads": -1, "filename": "django-inplaceedit-extra-fields-0.3.1.tar.gz", "has_sig": false, "md5_digest": "6b3ac33718b571e489f8a810102eb57f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12972, "upload_time": "2013-09-17T08:53:27", "url": "https://files.pythonhosted.org/packages/9e/29/5c0210c177495a8350e77ec9a8e655a53431f486dacc5029083c914f16ef/django-inplaceedit-extra-fields-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "876ee9073d28b87eee079936828805e7", "sha256": "3a69167f06affbb0058d4ce454a685495e1e4480a84256c675ad721d436f2768" }, "downloads": -1, "filename": "django-inplaceedit-extra-fields-0.3.2.tar.gz", "has_sig": false, "md5_digest": "876ee9073d28b87eee079936828805e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13043, "upload_time": "2013-09-17T09:22:05", "url": "https://files.pythonhosted.org/packages/a6/d8/54081ff4b2da3ff975d240a2e74de6b36a8e75af9c184e90e5bd0354e51c/django-inplaceedit-extra-fields-0.3.2.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "4455188e81f8c5a6fd27be5d1ac615eb", "sha256": "f47dff31f7dd46b2f06693c1503ad13ab43e91f8d34e58777f06c8d144093971" }, "downloads": -1, "filename": "django-inplaceedit-extra-fields-0.4.0.tar.gz", "has_sig": false, "md5_digest": "4455188e81f8c5a6fd27be5d1ac615eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13277, "upload_time": "2013-09-17T10:46:49", "url": "https://files.pythonhosted.org/packages/00/81/1f805d238283a0209ae7a8732c387315103003c7d0eb694b5bfe504a10dc/django-inplaceedit-extra-fields-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "660c6353bd789e4c2d0b8915db06960d", "sha256": "810f335f01b59c6b45761046dd5624f1f1a34b2f1ffb22cc0b17c531f3931ee5" }, "downloads": -1, "filename": "django-inplaceedit-extra-fields-0.4.1.tar.gz", "has_sig": false, "md5_digest": "660c6353bd789e4c2d0b8915db06960d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13414, "upload_time": "2013-09-17T11:24:53", "url": "https://files.pythonhosted.org/packages/ce/c7/f3181699a90a4ad077df783e7693380d9195f20f9a2646db76afb8356b7b/django-inplaceedit-extra-fields-0.4.1.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "22232e2c349fcb97eac8c3bb691c44ad", "sha256": "180f049a862573bea8e8359d6c4196de33c1bb6473ba598a955b3a916de62f81" }, "downloads": -1, "filename": "django-inplaceedit-extra-fields-0.5.0.tar.gz", "has_sig": false, "md5_digest": "22232e2c349fcb97eac8c3bb691c44ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13459, "upload_time": "2013-10-04T18:30:57", "url": "https://files.pythonhosted.org/packages/ca/b4/595a6fc9f2c7b8ec99802382d04599532f449eec02d45c70c28466f723fc/django-inplaceedit-extra-fields-0.5.0.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "136702f597ad154c5bb40b22eed5ace7", "sha256": "de365cf4dae14c83b765803faad286a1a1ba7ba5161254e10fc5f7bfc5bbffcd" }, "downloads": -1, "filename": "django-inplaceedit-extra-fields-0.6.0.tar.gz", "has_sig": false, "md5_digest": "136702f597ad154c5bb40b22eed5ace7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14207, "upload_time": "2015-08-30T16:25:26", "url": "https://files.pythonhosted.org/packages/a9/44/68a03cb14b40733ed2d3a16ce4623151a427462ef16562a9b66481b1fbab/django-inplaceedit-extra-fields-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "122475e7b98d8cd5f83580455027b846", "sha256": "2878685057d7389b923ff09c56e5d3039d3b54793d5df3d1a719d530d11f0ffe" }, "downloads": -1, "filename": "django-inplaceedit-extra-fields-0.6.1.tar.gz", "has_sig": false, "md5_digest": "122475e7b98d8cd5f83580455027b846", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14222, "upload_time": "2015-08-30T16:44:12", "url": "https://files.pythonhosted.org/packages/4b/e6/756aa9d1d8f303d4fce996a2ec9f48985b1ca9cfebdf541b0bb61d18357a/django-inplaceedit-extra-fields-0.6.1.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "396e4126a4dd4916d4fadb39213879c8", "sha256": "b3ac3413472eb6ed859be1a8b0a8d564f8f73390d08cc001be004d197bd8750e" }, "downloads": -1, "filename": "django-inplaceedit-extra-fields-0.7.0.tar.gz", "has_sig": false, "md5_digest": "396e4126a4dd4916d4fadb39213879c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14281, "upload_time": "2016-04-21T17:25:23", "url": "https://files.pythonhosted.org/packages/24/b8/02da90393c79e105df722f17a3e6f7685c8599ce6dc151b8150199612cd2/django-inplaceedit-extra-fields-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "ab686ced629f09a3f9b35015874e759a", "sha256": "ea210bedbab337fcbeda08fc1d9b1f94c1f705d5f08806eead3f433becc91eb6" }, "downloads": -1, "filename": "django-inplaceedit-extra-fields-0.7.1.tar.gz", "has_sig": false, "md5_digest": "ab686ced629f09a3f9b35015874e759a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14304, "upload_time": "2016-04-22T08:20:30", "url": "https://files.pythonhosted.org/packages/43/68/ab441dd2abd8fca93ade7fdd05bdc6a2a462605ae0beb3932847892bc554/django-inplaceedit-extra-fields-0.7.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ab686ced629f09a3f9b35015874e759a", "sha256": "ea210bedbab337fcbeda08fc1d9b1f94c1f705d5f08806eead3f433becc91eb6" }, "downloads": -1, "filename": "django-inplaceedit-extra-fields-0.7.1.tar.gz", "has_sig": false, "md5_digest": "ab686ced629f09a3f9b35015874e759a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14304, "upload_time": "2016-04-22T08:20:30", "url": "https://files.pythonhosted.org/packages/43/68/ab441dd2abd8fca93ade7fdd05bdc6a2a462605ae0beb3932847892bc554/django-inplaceedit-extra-fields-0.7.1.tar.gz" } ] }