{ "info": { "author": "Stefan Foulis", "author_email": "stefan.foulis@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Internet :: WWW/HTTP" ], "description": "===============\ncmsplugin-filer\n===============\n\nA set of cms plugins that replace the plugins shipped with django-cms with\nversions that use file fields from django-filer.\n\nWarning: ::\n\n Starting with version 1.1.0, support for Python 2.6, Django 1.7 or lower\n and django CMS 3.0.x and lower was dropped. Please pin your dependencies\n to ``cmsplugin-filer<1.1.0`` for older projects.\n\n Starting with version 0.10 support for django CMS 2.x was dropped\n (table renaming magic removal). Pin your dependencies to\n ``cmsplugin-filer<0.10`` for django-cms 2.x projects.\n\n\nDependencies\n============\n\n* django-filer >= 1.2\n* Django >= 1.8\n* django-cms >= 3.1\n* django-sekizai >= 0.4.2\n* easy_thumbnails >= 1.0\n* django-appconf\n* djangocms-attributes-field\n\n\nInstallation\n============\n\nTo get started using ``cmsplugin-filer``:\n\n- install it with ``pip``::\n\n $ pip install cmsplugin-filer\n\n- configure ``django-filer`` as documented in https://django-filer.readthedocs.io/en/latest/installation.html#configuration\n\n- add the plugins to ``INSTALLED_APPS``::\n\n INSTALLED_APPS = (\n ...\n 'cmsplugin_filer_file',\n 'cmsplugin_filer_folder',\n 'cmsplugin_filer_link',\n 'cmsplugin_filer_image',\n 'cmsplugin_filer_teaser',\n 'cmsplugin_filer_video',\n ...\n )\n\n\n- run ``migrate``.\n\nYou can also set ``FILER_IMAGE_USE_ICON`` in your ``settings.py`` to configure\n``cmsplugin_filer_image`` plugin to use 32x32 icons for representing\nplugin instances.\n\nThe default template in ``cmsplugin_filer_image`` expects the subject location functionality to be enabled.\nFollow: https://django-filer.readthedocs.io/en/latest/installation.html#subject-location-aware-cropping\n\nUpgrading to version 1.1\n========================\n\nIn version 1.1 there are two backward incompatible changes:\n\nMigrations layout\n-----------------\n\nMigrations have been moved back to the standard location. cmsplugin_filer related\n``MIGRATION_MODULE`` setting items **must** be removed for cmsplugin_filer 1.1 to work\n\nRemoval of ``ThumbnailOption`` model\n------------------------------------\n``ThumbnailOption`` has been moved to ``filer`` (since filer 1.2).\nYou **must** update your models and migrations referencing ``ThumbnailOption`` for this to work.\n\nUpgrade process involves updating your models and migrations.\n\nmodel.py\n^^^^^^^^\n\nAdd::\n\n try:\n from filer.models import ThumbnailOption\n thumbnail_model = 'filer.ThumbnailOption'\n except ImportError:\n from cmsplugin_filer_image.models import ThumbnailOption\n thumbnail_model = 'cmsplugin_filer_image.ThumbnailOption'\n\nIf you use the string syntax (e.g.: ``thumb_field = models.ForeignKey('cmsplugin_filer_image.ThumbnailOption')``)\nuse ``thumbnail_model`` string as defined above (e.g.: ``thumb_field = models.ForeignKey(thumbnail_model)``\nIf using the model directly you don't have to change the fields definition\n\nDjango 1.7+ migrations\n^^^^^^^^^^^^^^^^^^^^^^\n\nFor every migration file that references ``ThumbnailOption`` add the following import::\n\n from myapp.models import thumbnail_model\n\nand change all ``'cmsplugin_filer_image.ThumbnailOption'`` to ``thumbnail_model``\n\nSouth migrations\n^^^^^^^^^^^^^^^^\n\nIn every migration file add the following import::\n\n from myapp.models import thumbnail_model\n\nand change all ``'cmsplugin_filer_image.ThumbnailOption'`` to ``thumbnail_model`` and\n``u\"orm['cmsplugin_filer_image.ThumbnailOption']\"`` to ``u\"orm['%s']\" % thumbnail_model``.\n\n\nThe default template in ``cmsplugin_filer_image`` expects the subject location\nfunctionality to be enabled.\nFollow: http://django-filer.readthedocs.org/en/0.9.2/installation.html#subject-location-aware-cropping\n\nPlease note that current develop version moved plugin packages from `src`\ndirectory to project root. This may break your installation if upgrading.\nUninstall any previous `cmsplugin_filer` installation (either from PyPI or\nfrom github repository) and reinstall it.\n\n\nIntegrations\n============\n\n\n``djangocms-text-ckeditor``\n---------------------------\n\n``cmsplugin_filer_image`` provides integration with\n`djangocms-text-ckeditor `__.\nAdd this setting to enable it::\n\n TEXT_SAVE_IMAGE_FUNCTION='cmsplugin_filer_image.integrations.ckeditor.create_image_plugin'\n\nThis allows dragging images into the text editor in Firefox and newer versions\nof IE.\n\n\nCustomisation\n-------------\n\nMost plugins (file, folder, image and teaser) support configuring custom\n\"styles\" (templates).\n\ne.g add the following settings for the image plugin::\n\n CMSPLUGIN_FILER_IMAGE_STYLE_CHOICES = (\n ('default', 'Default'),\n ('boxed', 'Boxed'),\n )\n CMSPLUGIN_FILER_IMAGE_DEFAULT_STYLE = 'boxed'\n\nNow, if a template exists at ``cmsplugin_filer_image/plugins/image/boxed.html``\nit will be used. If not, it will fall back to ``cmsplugin_filer_image/plugins/image/default.html``.\nIf a css class in the default template is enough, it can be used in the\ntemplate as ``{{ instance.style }}``.\n\nFor backwards compatibility the plugin will always use ``cmsplugin_filer_image/image.html`` if it exists. Remove that\ntemplate after migrating to the new structure.\n\n\nClasses\n-------\n\nClasses like ``left``, ``center``, ``right`` and ``img-responsive`` are given by the plugin to use in your own projects.", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/divio/cmsplugin-filer", "keywords": null, "license": "BSD", "maintainer": null, "maintainer_email": null, "name": "cmsplugin-filer", "package_url": "https://pypi.org/project/cmsplugin-filer/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/cmsplugin-filer/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://github.com/divio/cmsplugin-filer" }, "release_url": "https://pypi.org/project/cmsplugin-filer/1.1.3/", "requires_dist": null, "requires_python": null, "summary": "django-cms plugins for django-filer", "version": "1.1.3" }, "last_serial": 3552955, "releases": { "0.0.2a": [ { "comment_text": "", "digests": { "md5": "cfe21795c20d96adb56b193b1a093754", "sha256": "6b89d1cc3c140b555d2fb15d708d49dfb7aa9a0362c164fe151587a9866cb998" }, "downloads": -1, "filename": "cmsplugin-filer-0.0.2a.tar.gz", "has_sig": false, "md5_digest": "cfe21795c20d96adb56b193b1a093754", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6968, "upload_time": "2010-01-12T09:31:28", "url": "https://files.pythonhosted.org/packages/19/b8/4b0aac0b3bb3a60c7ee6612eeca3549a67abf117a0f683f58f82f9ed875e/cmsplugin-filer-0.0.2a.tar.gz" } ], "0.0.3a": [ { "comment_text": "", "digests": { "md5": "fc59deaac0c5a1719bfe54c136bd5da5", "sha256": "206e3c768cb0d7999eade38ccb17dad4932ac6e0b5403fbb3b3166de38b41d6c" }, "downloads": -1, "filename": "cmsplugin-filer-0.0.3a.tar.gz", "has_sig": false, "md5_digest": "fc59deaac0c5a1719bfe54c136bd5da5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7000, "upload_time": "2010-01-12T10:11:04", "url": "https://files.pythonhosted.org/packages/74/4a/657b64619b503e72037b6a2dac8aadcf81c5dbb5682ca1d3e49597cb60cc/cmsplugin-filer-0.0.3a.tar.gz" } ], "0.10": [ { "comment_text": "", "digests": { "md5": "81955f3300c46db3c688834c27643860", "sha256": "1e00a23bcc1623755283ba53a0160075211bb3d6609d6bc22c59fe20c64f2b87" }, "downloads": -1, "filename": "cmsplugin-filer-0.10.tar.gz", "has_sig": false, "md5_digest": "81955f3300c46db3c688834c27643860", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75592, "upload_time": "2014-09-08T07:28:51", "url": "https://files.pythonhosted.org/packages/0b/21/43e259250aea17b44fbe98e5752a64541fe26924fdc7086585510718185f/cmsplugin-filer-0.10.tar.gz" } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "e2b9e60db49c0336de4560e406552ebc", "sha256": "06cd7da194cc69e1706208445c68267a408bb19e5bb461dc38bc08c79c837e23" }, "downloads": -1, "filename": "cmsplugin-filer-0.10.1.tar.gz", "has_sig": false, "md5_digest": "e2b9e60db49c0336de4560e406552ebc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95235, "upload_time": "2014-11-03T14:28:52", "url": "https://files.pythonhosted.org/packages/2e/8f/73202d5b0635638f25424cf72add7f9a61ac79c5257ea309eb4ed2afd45c/cmsplugin-filer-0.10.1.tar.gz" } ], "0.10.2": [ { "comment_text": "", "digests": { "md5": "4d07d66bb9adec14638b62e22bfa33f9", "sha256": "da2db72bc1f7a6f7d511342ccd33840ee8c3aac94859a886806ef90a0bed59c9" }, "downloads": -1, "filename": "cmsplugin-filer-0.10.2.tar.gz", "has_sig": false, "md5_digest": "4d07d66bb9adec14638b62e22bfa33f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95730, "upload_time": "2015-07-28T11:50:32", "url": "https://files.pythonhosted.org/packages/7a/a2/319a2ec765b78ac3cccafe8da9cf9fb91e02aef40d99def9cb322212e1e3/cmsplugin-filer-0.10.2.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "2a4552e2f9be16acec199923bc773b9b", "sha256": "81d2191185eb4a390f372e96add07f11361196508b03c56568b392f2a6805107" }, "downloads": -1, "filename": "cmsplugin-filer-0.7.0.tar.gz", "has_sig": false, "md5_digest": "2a4552e2f9be16acec199923bc773b9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14268, "upload_time": "2010-10-30T14:42:44", "url": "https://files.pythonhosted.org/packages/35/3b/7dfe978b6ff1657e0e5727227189a80d318986c42008141ee2e2ebd6b07c/cmsplugin-filer-0.7.0.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "71bfe837fce82c72ae7232d7f8cbfc45", "sha256": "26a987d8e2024ffb25ef5820ac74c6a24196c02362ee77b5c93784d06aeb8d15" }, "downloads": -1, "filename": "cmsplugin-filer-0.8.0.tar.gz", "has_sig": false, "md5_digest": "71bfe837fce82c72ae7232d7f8cbfc45", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20835, "upload_time": "2010-10-30T16:53:43", "url": "https://files.pythonhosted.org/packages/5a/3f/889cb30512fd63fc35014732360d83cac255407bc3066b92c8847ba39a4f/cmsplugin-filer-0.8.0.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "b8a0dd49a7bfd3be4bc9493098aaa6bd", "sha256": "baa0412af7c0ba6a73ec9d99a67862b4328cbefe9f35af00023ca2d60a6445a3" }, "downloads": -1, "filename": "cmsplugin-filer-0.9.tar.gz", "has_sig": false, "md5_digest": "b8a0dd49a7bfd3be4bc9493098aaa6bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41557, "upload_time": "2012-09-05T18:52:13", "url": "https://files.pythonhosted.org/packages/dd/6e/9d957f587b28cc88dcf789ce8cc32ed052254106a955f9b736321a6fb9e5/cmsplugin-filer-0.9.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "0f89f79193d7fd5180143bb33671ef52", "sha256": "c693711ea8402f65aa1d4ea5aa0871b483ee202c748691ab957313a6c63ca3a9" }, "downloads": -1, "filename": "cmsplugin-filer-0.9.1.tar.gz", "has_sig": false, "md5_digest": "0f89f79193d7fd5180143bb33671ef52", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57864, "upload_time": "2012-11-26T14:34:17", "url": "https://files.pythonhosted.org/packages/8e/52/e68e2c141076ba87c64dca1616c8cc9836d5b870527d8e389dbea52cfb24/cmsplugin-filer-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "42c26f20c50e72ee7a2f506eb8cc4ab5", "sha256": "c9023631e32b27bdf7787a7fc4a41309a35e00d463dbbb4fff46f82f690b12a1" }, "downloads": -1, "filename": "cmsplugin-filer-0.9.2.tar.gz", "has_sig": false, "md5_digest": "42c26f20c50e72ee7a2f506eb8cc4ab5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59271, "upload_time": "2012-11-29T13:49:41", "url": "https://files.pythonhosted.org/packages/1f/e7/6f6341fb2daf3d7fd2e19621521fe6ab84dc7f53ddf3c72bbb4131fa4a86/cmsplugin-filer-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "5be404adfac24ad09676614728d27543", "sha256": "0de60a2ec2df33d52408fbf68b5fa7d6c5e96f8c86e687389c0712c612882500" }, "downloads": -1, "filename": "cmsplugin-filer-0.9.3.tar.gz", "has_sig": false, "md5_digest": "5be404adfac24ad09676614728d27543", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 60600, "upload_time": "2012-12-11T14:33:32", "url": "https://files.pythonhosted.org/packages/58/8f/f10dc57a529e554dc9c6e670b42f197d1bd595a5f7e4ed9c9ccfaf17fc1e/cmsplugin-filer-0.9.3.tar.gz" } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "e26cc348f9c09e16a72abee948b85105", "sha256": "a9b1655e844d72f27c6af792c16492fbfcc4ef0b71e5c0480d461d02efd79521" }, "downloads": -1, "filename": "cmsplugin-filer-0.9.4.tar.gz", "has_sig": false, "md5_digest": "e26cc348f9c09e16a72abee948b85105", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64320, "upload_time": "2013-01-09T17:42:31", "url": "https://files.pythonhosted.org/packages/46/1e/549eb170c9fe269e41f69cd7829adf8e9bfbb7f4e64dcf5fc18c428816a2/cmsplugin-filer-0.9.4.tar.gz" } ], "0.9.5": [ { "comment_text": "", "digests": { "md5": "a2588d4bc4acf7948c11156479a5e8d1", "sha256": "bb8ab2c46da333e8a611ce0cb3a9b0b9e7041c4661330a694de211b39a6965bc" }, "downloads": -1, "filename": "cmsplugin-filer-0.9.5.tar.gz", "has_sig": false, "md5_digest": "a2588d4bc4acf7948c11156479a5e8d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64099, "upload_time": "2013-04-09T17:19:03", "url": "https://files.pythonhosted.org/packages/e1/3c/924d8fc237ac30ec5cd593a377bfb52e0ef9c1d664417c96915babba23eb/cmsplugin-filer-0.9.5.tar.gz" } ], "0.9.7": [ { "comment_text": "", "digests": { "md5": "dd766354adcba2e5119cf9bdcb700dc4", "sha256": "59b114e4dceebb547031c263a1891f6372880e307f88c37dc30a5044d19c5084" }, "downloads": -1, "filename": "cmsplugin-filer-0.9.7.tar.gz", "has_sig": false, "md5_digest": "dd766354adcba2e5119cf9bdcb700dc4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72753, "upload_time": "2014-06-03T15:37:25", "url": "https://files.pythonhosted.org/packages/40/5b/ee10bfce883fd400c5afd902dd6f66e1f55c088b0e4fa248a66e92b4904b/cmsplugin-filer-0.9.7.tar.gz" } ], "0.9.8": [ { "comment_text": "", "digests": { "md5": "237c8fa70c0f2b7d97b62a6144992961", "sha256": "f7f2f61945c0bca407a62d8c3965a7b2d7d0126c5a9b265c8030f58ae0a42a9c" }, "downloads": -1, "filename": "cmsplugin-filer-0.9.8.tar.gz", "has_sig": false, "md5_digest": "237c8fa70c0f2b7d97b62a6144992961", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72369, "upload_time": "2014-06-04T07:50:20", "url": "https://files.pythonhosted.org/packages/08/ff/a6570ee613fdc7b4b6926398ccce3203228e58ad9acac12f4e411e8aa052/cmsplugin-filer-0.9.8.tar.gz" } ], "0.9.9": [ { "comment_text": "", "digests": { "md5": "a95787cf845451b7325b6fe45e903f00", "sha256": "8e7287c0b67e93dacc0d91221e87c32d87721af914e66a6cc765715172cad543" }, "downloads": -1, "filename": "cmsplugin-filer-0.9.9.tar.gz", "has_sig": false, "md5_digest": "a95787cf845451b7325b6fe45e903f00", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73110, "upload_time": "2014-06-05T21:37:11", "url": "https://files.pythonhosted.org/packages/08/92/f96382afa59b6deccb9d0dd9b5bcefe5b7ed2a25f648ad3b69dbae212df3/cmsplugin-filer-0.9.9.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "2fc58711a31b57cd9d190eea6ad11e0e", "sha256": "1d78ce2146cd170f14994b7899908105f64b5ca5ccd5357f469517fba5272da8" }, "downloads": -1, "filename": "cmsplugin_filer-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2fc58711a31b57cd9d190eea6ad11e0e", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 289182, "upload_time": "2015-11-03T22:13:19", "url": "https://files.pythonhosted.org/packages/ed/e1/79029b850f01c5abeafbe10935e82b22b7332e52666e15966a35398a5845/cmsplugin_filer-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9b6fd3bce435e213e7ea280991bd4a33", "sha256": "fa9fd47ce752d7e669ea1ce911e148a45a2e0dae95e4c0ae8d48cc4fbf553a83" }, "downloads": -1, "filename": "cmsplugin-filer-1.0.0.tar.gz", "has_sig": false, "md5_digest": "9b6fd3bce435e213e7ea280991bd4a33", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 99431, "upload_time": "2015-11-03T22:13:12", "url": "https://files.pythonhosted.org/packages/6f/52/62c1db5c707ad57cd3f082eb2ed25084b4f1e5c679f2cece9aadb6cd4d5c/cmsplugin-filer-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "4b557e0da96fd4d1a2109196ee8b7fc1", "sha256": "3dea74b48e8914c517de6ee6661a775eb0b724a9643e434a821bf4507b7ccd6c" }, "downloads": -1, "filename": "cmsplugin_filer-1.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4b557e0da96fd4d1a2109196ee8b7fc1", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 306301, "upload_time": "2016-01-14T23:44:03", "url": "https://files.pythonhosted.org/packages/06/aa/68b097f1e9708fc720d66005f777c58ca5ab3831839331e9bff0d022a954/cmsplugin_filer-1.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e5a825b6e3d3f3da3337c349ac2ef2fc", "sha256": "24cdad87257ab6204845f7a1e87a46c3672802209d7d699335e2bdab0d9ca04c" }, "downloads": -1, "filename": "cmsplugin-filer-1.0.1.tar.gz", "has_sig": false, "md5_digest": "e5a825b6e3d3f3da3337c349ac2ef2fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 102665, "upload_time": "2016-01-14T23:40:48", "url": "https://files.pythonhosted.org/packages/29/20/04d5d162d7c0e45f1022f60cbb554ae028e0e13e75ee7e47b778687f706f/cmsplugin-filer-1.0.1.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "77c4973e3394a2f7e220c9e590547467", "sha256": "728bcde3854e9930fae4a289fce4f53adca63c1c56bce71b092c694765d36394" }, "downloads": -1, "filename": "cmsplugin_filer-1.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "77c4973e3394a2f7e220c9e590547467", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 289045, "upload_time": "2016-06-22T18:01:41", "url": "https://files.pythonhosted.org/packages/e6/6b/097eb805a29243cac9567543f3a9a055b71b89ac62d6d0bd2a03d336b369/cmsplugin_filer-1.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f66f4c82d76306574dfcce6f6be8bbe5", "sha256": "a9a433053ce7e29147e0e08e3442407352a2b7bbcb25efc154a8552e67836ad2" }, "downloads": -1, "filename": "cmsplugin-filer-1.1.1.tar.gz", "has_sig": false, "md5_digest": "f66f4c82d76306574dfcce6f6be8bbe5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86015, "upload_time": "2016-06-22T18:01:36", "url": "https://files.pythonhosted.org/packages/bf/e7/5481569f256fe6acadaa08887498ef8434480bdd6a35b154cfeb0d4c899d/cmsplugin-filer-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "d835f38a3e506cab8e0288959626d6e7", "sha256": "fc5d8724c920922022c0a3c38da9b1949f7c05a52c4b385563c84776fd93e560" }, "downloads": -1, "filename": "cmsplugin_filer-1.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d835f38a3e506cab8e0288959626d6e7", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 292391, "upload_time": "2016-07-06T01:44:07", "url": "https://files.pythonhosted.org/packages/8b/f0/0449fd463b016594c1505a716c5f16ab7f3fe65d1b1761f0af5f45c5585e/cmsplugin_filer-1.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d4e5e01ff264cef6029a562962888931", "sha256": "76a7857258f0ad517c782a91e28832c7add8c46f49f1c84061f0703a32323c1c" }, "downloads": -1, "filename": "cmsplugin-filer-1.1.2.tar.gz", "has_sig": false, "md5_digest": "d4e5e01ff264cef6029a562962888931", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 88107, "upload_time": "2016-07-06T01:44:01", "url": "https://files.pythonhosted.org/packages/81/5c/cd4c0f3a1cfeacb3c6773bd9b15e684ebf6f7cad31cc74ca2f090fd0a047/cmsplugin-filer-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "7330dd47f91f8d31ae54134be96b9adf", "sha256": "e1573b391e58682c796a922e60d5bfd0c96461395663a6cee536fe6c343c14ec" }, "downloads": -1, "filename": "cmsplugin_filer-1.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7330dd47f91f8d31ae54134be96b9adf", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 296958, "upload_time": "2016-09-05T18:48:55", "url": "https://files.pythonhosted.org/packages/20/81/7e8ec55750dfb9f013ecaeb8d652c91f0a78566a06bfcdec978fc00b8fd9/cmsplugin_filer-1.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "067ae6485130ce7592334bc9aedce8d4", "sha256": "d9a1c57448b5a55712cf6baf25e43703d37f75162bbd540aeb19ecb832c27e3f" }, "downloads": -1, "filename": "cmsplugin-filer-1.1.3.tar.gz", "has_sig": false, "md5_digest": "067ae6485130ce7592334bc9aedce8d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90347, "upload_time": "2016-09-05T18:48:52", "url": "https://files.pythonhosted.org/packages/9b/7c/079f5705ec0d11df2da6d194697b7f4c9ce8515732b7dc698330fd4a91e4/cmsplugin-filer-1.1.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "7330dd47f91f8d31ae54134be96b9adf", "sha256": "e1573b391e58682c796a922e60d5bfd0c96461395663a6cee536fe6c343c14ec" }, "downloads": -1, "filename": "cmsplugin_filer-1.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7330dd47f91f8d31ae54134be96b9adf", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 296958, "upload_time": "2016-09-05T18:48:55", "url": "https://files.pythonhosted.org/packages/20/81/7e8ec55750dfb9f013ecaeb8d652c91f0a78566a06bfcdec978fc00b8fd9/cmsplugin_filer-1.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "067ae6485130ce7592334bc9aedce8d4", "sha256": "d9a1c57448b5a55712cf6baf25e43703d37f75162bbd540aeb19ecb832c27e3f" }, "downloads": -1, "filename": "cmsplugin-filer-1.1.3.tar.gz", "has_sig": false, "md5_digest": "067ae6485130ce7592334bc9aedce8d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90347, "upload_time": "2016-09-05T18:48:52", "url": "https://files.pythonhosted.org/packages/9b/7c/079f5705ec0d11df2da6d194697b7f4c9ce8515732b7dc698330fd4a91e4/cmsplugin-filer-1.1.3.tar.gz" } ] }