{ "info": { "author": "Hector Velarde", "author_email": "hector.velarde@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Framework :: Plone", "Framework :: Plone :: 4.3", "Intended Audience :: End Users/Desktop", "Intended Audience :: System Administrators", "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", "Operating System :: OS Independent", "Programming Language :: JavaScript", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Topic :: Office/Business :: News/Diary", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "===============\ncollective.nitf\n===============\n\n.. contents:: Table of Contents\n\nLife, the Universe, and Everything\n----------------------------------\n\nNews articles in Plone are instances of the 'News Item' content type: they can\ncontain a title, a description, a body text, an image and some basic metadata.\nIf you publish a couple of items from time to time, this is fine.\n\nBut suppose you have to publish dozens of items everyday... How do you tell\nyour readers who they are about? What do they cover? Where do they took place?\nAnd, more important, how do you classify them? How do you organize them? How\ndo you tell your readers which ones are newsworthy?\n\nTo solve these, and other issues, the `IPTC`_ developed XML standards to\ndefine the content and structure of news articles. `NITF`_, `NewsML`_ and\n`NewsCodes`_ are among these standards and they support the classification,\nidentification and description of a huge number of news articles\ncharacteristics.\n\nNITF is intended to structure independent news articles and this package aims\nto implement a content type inspired by the specification.\n\nMostly Harmless\n---------------\n\n.. image:: http://img.shields.io/pypi/v/collective.nitf.svg\n :target: https://pypi.python.org/pypi/collective.nitf\n\n.. image:: https://img.shields.io/travis/collective/collective.nitf/master.svg\n :target: http://travis-ci.org/collective/collective.nitf\n\n.. image:: https://img.shields.io/coveralls/collective/collective.nitf/master.svg\n :target: https://coveralls.io/r/collective/collective.nitf\n\nGot an idea? Found a bug? Let us know by `opening a support ticket`_.\n\nDon't Panic\n-----------\n\nInstallation\n^^^^^^^^^^^^\n\nTo enable this product in a buildout-based installation:\n\n#. Edit your buildout.cfg and add ``collective.nitf`` to the list of eggs to install::\n\n [buildout]\n ...\n eggs =\n collective.nitf\n\nAfter updating the configuration you need to run ''bin/buildout'', which will take care of updating your system.\n\nGo to the 'Site Setup' page in a Plone site and click on the 'Add-ons' link.\n\nCheck the box next to ``collective.nitf`` and click the 'Activate' button.\n\nBehaviors\n^^^^^^^^^\n\nThis package includes a behavior called ``collective.nitf.behaviors.interfaces.ISection``.\nBy applying it to a Dexterity-based content type you will get a new field called ``section``.\n\nHelper views\n^^^^^^^^^^^^\n\nAll news articles provide @@nitf and @@newsml views that are available although are not registered.\n\nYou can validate the output of the those views using services like `XML validation`_.\n\nYou may use the `NITF Document Type Definition`_ version 3.5 and the `XHTML Ruby Module`_ associated with it.\n\n.. _`IPTC`: http://www.iptc.org/\n.. _`NewsCodes`: http://www.iptc.org/NewsCodes/\n.. _`NewsML`: http://www.newsml.org/\n.. _`NITF`: http://www.nitf.org/\n.. _`NITF Document Type Definition`: http://www.iptc.org/std/NITF/3.5/specification/nitf-3-5.dtd\n.. _`XHTML Ruby Module`: http://www.iptc.org/std/NITF/3.5/specification/xhtml-ruby-1.mod\n.. _`XML validation`: http://www.xmlvalidation.com/\n.. _`opening a support ticket`: https://github.com/collective/collective.nitf/issues\n\nInternals\n---------\n\n``collective.nitf`` uses Cycle2 slideshow plugin for jQuery and it can load its resources from the Plone JS registry if they are present there.\n\nIf you're using ``collective.nitf`` with other packages that use Cycle2 also (like `sc.photogallery`_ or `covertile.cycle2`_),\nit is highly recommended that you register those resources to load them once and avoid conflicts.\n\nYou can use a ``jsregistry.xml`` file that includes the following:\n\n.. code-block:: xml\n\n \n \n \n\n.. _`sc.photogallery`: https://pypi.python.org/pypi/sc.photogallery\n.. _`covertile.cycle2`: https://pypi.python.org/pypi/covertile.cycle2\n\nDevelopment\n^^^^^^^^^^^\n\nWe use Webpack to process static resources on this package.\nWebpack processes LESS and JS files, minifies the resulting CSS and JS, and optimizes all images.\nThe final JS file is also a UMD package, which provides compatibility with most popular script loaders.\n\nTo contribute, you should start the instance in one shell and start Webpack watcher on another with the following command:\n\n.. code-block:: bash\n\n $ bin/npm_watch\n\nThen go to ``webpack/app`` folder and edit LESS and JS files;\nWebpack watcher will automatically create the final resources in the right place.\n\nThere are also other commands added to handle more complex scenarios.\nThe following command will set the buildout node installation in the system PATH, this way you can use Webpack as described on Webpack docs.\n\n.. code-block:: bash\n\n $ bin/webpack_env\n\nThe following command generates JS and CSS without the minify step (it can be used to check the code being generated in a human readable way).\n\n.. code-block:: bash\n\n $ bin/npm_dev\n\nThe following command rebuilds static files and exit (insted of keep watching the changes):\n\n.. code-block:: bash\n\n $ bin/npm_build\n\nMigration from 1.x to 2.x\n^^^^^^^^^^^^^^^^^^^^^^^^^\n\nYou have to be aware of the following changes when migrating from version 1.x to 2.x:\n\n* Package is no longer compatible with Plone 4.2\n* Package no longer depends on Grok\n* Package no longer depends on `collective.z3cform.widgets `_;\n you should uninstall that dependency manually if there is no other package depending on it on your site\n* Package no longer depends on `plone.app.referenceablebehavior `_;\n the ``IReferenceable`` behavior included there is no longer assigned by default\n* The character counter is no longer available\n* We use `Cycle2 `_ instead of `Galleria `_ as the framework for the slideshow view;\n package now depends on `collective.js.cycle2 `_\n* The following views are available for a News Article: ``view``, ``slideshow_view`` and ``text_only_view``\n* View templates were completely refactored and support for semantic markup was added;\n the default view displays a bigger image\n* The following behaviors are assigned by default to the News Article content type: ``plone.app.relationfield.behavior.IRelatedItems`` and ``collective.nitf.behaviors.interfaces.ISection``\n* A new permission ``collective.nitf: Setup`` is available to access the control panel configlet and is assigned by default to ``Manager`` and ``Site Administrator`` roles\n* Static resources are now named ``nitf.css`` and ``nitf.js`` (easier to debug at the browser)\n\nAn upgrade step is available to remove old resources, rename the views, and reindex all News Articles to reflect changes.\nThe upgrade step will not remove the ``plone.app.referenceablebehavior.referenceable.IReferenceable`` behavior if applied.\n\nShare and Enjoy\n---------------\n\n``collective.nitf`` would not have been possible without the contribution of\nthe following people:\n\n- Cleber J. Santos\n- Franco Pellegrini\n- Gonzalo Almeida\n- H\u00e9ctor Velarde\n- Joaqu\u00edn Rosales\n- Juan A. D\u00edaz\n- Juan Pablo Gim\u00e9nez\n- Marcos F. Romero\n- Silvestre Huens\n- \u00c9rico Andrei\n- Rodrigo Ferreira de Souza\n- Wolfgang Beyer (`Mandelbrot image set `_ used in tests)\n\nYou can find an updated list of package contributors on `GitHub`_.\n\nDevelopment sponsored by Open Multimedia.\n\n.. _`GitHub`: https://github.com/collective/collective.nitf/contributors\n\nChangelog\n---------\n\nThere's a frood who really knows where his towel is.\n\n2.1b4 (2017-10-18)\n^^^^^^^^^^^^^^^^^^\n\n- ``SearchableText`` index for News Article content type now includes object keywords (fixes `brasil.gov.portal#155 `_).\n [hvelarde]\n\n\n2.1b3 (2017-07-05)\n^^^^^^^^^^^^^^^^^^\n\n- Add NITF tile for collective.cover when upgrading to 2.x (closes `#205`_).\n [idgserpro]\n\n- Remove ``relatable_content_types`` registry record when upgrading to 2.x (closes `#208`_).\n [idgserpro]\n\n\n2.1b2 (2017-06-12)\n^^^^^^^^^^^^^^^^^^\n\n- Do not create a link to ``None`` on the tile.\n [hvelarde]\n\n- Fix upgrade process between versions 1.x and 2.x;\n check documentation on migration for more information (closes `#198`_).\n [rodfersou, hvelarde]\n\n\n2.1b1 (2017-02-16)\n^^^^^^^^^^^^^^^^^^\n\n- Handle corner case when upgrade step for 1008 found a collection with no query defined.\n [hvelarde]\n\n- Simplify slideshow template to avoid depending on context id;\n this solves an issue when id ends with \".html\".\n [rodfersou]\n\n- Refactor static resources.\n [rodfersou]\n\n- Add classes to HTML elements on tile for easy visual customization.\n [agnogueira]\n\n- Remove dependency on plone.directives.form and latest traces of Grok.\n [hvelarde]\n\n- Fix exception getting image size with ``ImageScaling`` adapter (refs. `sc.social.like #87`_).\n [rodfersou]\n\n\n2.0b4 (2016-11-03)\n^^^^^^^^^^^^^^^^^^\n\n- Do not try to create scales on news article with no lead image;\n this was causing issues in some Collection view methods and in collective.cover's Collection tile (fixes `#178`_).\n [hvelarde]\n\n\n2.0b3 (2016-09-12)\n^^^^^^^^^^^^^^^^^^\n\n- Fix issue in NITF tile that was causing an exception when dropping content into it (fixes `#175`_).\n [rodfersou]\n\n\n2.0b2 (2016-07-27)\n^^^^^^^^^^^^^^^^^^\n\n- The ``getImage()`` and ``imageCaption()`` methods of the ``NITF`` class are deprecated and will be removed on next release;\n use ``image()`` and ``media_caption()`` instead.\n [hvelarde]\n\n- Fix issue with ``collective.nitf.image`` viewlet raising ``AttributeError`` when plone.app.contenttypes is installed (closes `#169`_).\n [hvelarde]\n\n- Use ``

`` tag to display the News Article subtitle to avoid warnings on validation.\n [hvelarde]\n\n- Fix exception when syndicalize NITF (closes `#161`_).\n [rodfersou]\n\n- Fix tile date format.\n [hvelarde]\n\n- Avoid rising exceptions when content referenced in tile is not available (fixes `#154`_).\n [hvelarde, rodfersou]\n\n- Remove hard dependency on plone.app.referenceablebehavior as Archetypes is no longer the default framework in Plone 5.\n Under Plone < 5.0 you should now explicitly add it to the `eggs` part of your buildout configuration to avoid issues while upgrading.\n [hvelarde]\n\n\n2.0b1 (2016-02-29)\n^^^^^^^^^^^^^^^^^^\n\n- Show title of news article as ``alt`` attribute on tile's image.\n [hvelarde]\n\n- Fix upgrade step to work with both, Archetypes and Dexterity-based collections.\n [rodfersou]\n\n\n2.0a1 (2015-09-30)\n^^^^^^^^^^^^^^^^^^\n\n.. Warning::\n Upgrades are supported only from release 1.0b3.\n\n- Make control panel configlet accesible to Site Administrator role (closes `#137`_).\n [hvelarde]\n\n- Load Cycle2 resources from the JS registry if available (closes `#133`_).\n [hvelarde]\n\n- Fix display of byline and refactor override of ``documentbyline`` viewlet;\n avoid performance issues when having many users by memoizing expensive call to Membership tool (fixes `#128`_).\n [hvelarde, rodfersou]\n\n- Replace slideshow framework machinery;\n we use `Cycle2`_ now instead of `Galleria`_.\n Don't forget do uninstall and remove collective.js.galleria if you no longer depend on it on your site (closes `#116`_).\n [rodfersou, hvelarde]\n\n- Fix default values for genre and urgency fields (closes `#118`_).\n [rodfersou]\n\n- Add NITF tile for collective.cover (closes `#123`_).\n [hvelarde]\n\n- Reimplement section field as a behavior (closes `#98`_).\n [hvelarde]\n\n- Drop support of Plone 4.2.\n [hvelarde]\n\n- Remove dependency on collective.z3cform.widgets.\n Don't forget do uninstall and remove the package if you no longer depend on it on your site.\n [hvelarde]\n\n- Update package i18n and Spanish and Brazilian Portuguese translations.\n [hvelarde]\n\n- Restore default binding on Link content type at uninstall time.\n [hvelarde]\n\n- Add ``Current`` as default value for available_genres and ``General`` as\n default value for available_sections.\n [hvelarde]\n\n- Character counter code was removed from package; this should be\n reimplemented using collective.js.charcount (closes `#75`_).\n [hvelarde]\n\n- Package was cleaned by removing some dependencies,\n deprecated methods on default view,\n unused macros from templates,\n and needless resources, scripts and styles.\n [marcosfromero, hvelarde]\n\n- Remove all javascript from templates, create new nitf.js and use\n jsregistry (closes `#94`_). [marcosfromero]\n\n- Add confirmation overlay before removing an image in media.pt\n (closes `#85`_). [marcosfromero]\n\n- Add required script library in media.pt to prevent image not loading\n when editing in overlay (closes `#84`_). [marcosfromero]\n\n- Fields were reordered to enhance user experience on adding/editing content:\n 'location' field is now above 'body text' and 'urgency' is below 'genre'.\n [hvelarde]\n\n- Reimplement ``keywords`` and ``documentbyline`` viewlets with semantic markup and\n support for news article byline for INITF interface.\n [jpgimenez, hvelarde, cleberjsantos]\n\n- Refactor templates to implement semantic markup to annotate news-specific\n metadata using rNews, schema.org and RDFa (closes `#47`_).\n [jpgimenez, marcosfromero, hvelarde]\n\n- Add plone.app.relationfield as a dependency; this is needed for Dexterity\n to proper handle relations (closes `#71`_). [jpgimenez]\n\n- Remove five.grok dependency, will easy the mainteinance and the\n extendibility of the package. [jpgimenez]\n\n- Changes image link behavior in view.pt for mobile devices\n (closes `#62`_). [marcosfromero]\n\n\n.. _`Cycle2`: http://jquery.malsup.com/cycle2/\n.. _`sc.social.like #87`: https://github.com/collective/sc.social.like/issues/87\n.. _`#47`: https://github.com/collective/collective.nitf/issues/47\n.. _`#62`: https://github.com/collective/collective.nitf/issues/62\n.. _`#71`: https://github.com/collective/collective.nitf/issues/71\n.. _`#75`: https://github.com/collective/collective.nitf/issues/75\n.. _`#84`: https://github.com/collective/collective.nitf/issues/84\n.. _`#85`: https://github.com/collective/collective.nitf/issues/85\n.. _`#94`: https://github.com/collective/collective.nitf/issues/94\n.. _`#98`: https://github.com/collective/collective.nitf/issues/98\n.. _`#116`: https://github.com/collective/collective.nitf/issues/116\n.. _`#118`: https://github.com/collective/collective.nitf/issues/118\n.. _`#123`: https://github.com/collective/collective.nitf/issues/123\n.. _`#128`: https://github.com/collective/collective.nitf/issues/128\n.. _`#133`: https://github.com/collective/collective.nitf/issues/133\n.. _`#137`: https://github.com/collective/collective.nitf/issues/137\n.. _`#154`: https://github.com/collective/collective.nitf/issues/154\n.. _`#161`: https://github.com/collective/collective.nitf/issues/161\n.. _`#169`: https://github.com/collective/collective.nitf/issues/169\n.. _`#175`: https://github.com/collective/collective.nitf/issues/175\n.. _`#178`: https://github.com/collective/collective.nitf/issues/178\n.. _`#198`: https://github.com/collective/collective.nitf/issues/198\n.. _`#205`: https://github.com/collective/collective.nitf/issues/205\n.. _`#208`: https://github.com/collective/collective.nitf/issues/208", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/collective/collective.nitf", "keywords": "plone dexterity iptc newsml nitf", "license": "", "maintainer": "", "maintainer_email": "", "name": "collective.nitf", "package_url": "https://pypi.org/project/collective.nitf/", "platform": "", "project_url": "https://pypi.org/project/collective.nitf/", "project_urls": { "Homepage": "https://github.com/collective/collective.nitf" }, "release_url": "https://pypi.org/project/collective.nitf/2.1b4/", "requires_dist": null, "requires_python": "", "summary": "A content type inspired on the IPTC's News Industry Text Format specification.", "version": "2.1b4" }, "last_serial": 3596742, "releases": { "1.0a1": [ { "comment_text": "", "digests": { "md5": "60c74092a10164c848e3d94ea672adc7", "sha256": "8f875fbbd714f10bac1310ed55096a48cfaaa895ee1845fb190658e80dfd95e5" }, "downloads": -1, "filename": "collective.nitf-1.0a1.tar.gz", "has_sig": false, "md5_digest": "60c74092a10164c848e3d94ea672adc7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66984, "upload_time": "2012-05-21T23:10:07", "url": "https://files.pythonhosted.org/packages/61/b0/e28e0e6c9a6d4cfedfa9d8d2890a3d552e39a51c13f4cbe4f2ab5ae9801a/collective.nitf-1.0a1.tar.gz" } ], "1.0a2": [ { "comment_text": "", "digests": { "md5": "9e4c11e1d6ba0260d97f8ec590895ba4", "sha256": "19761a6ddf3ff756b25d7fd37b80b00100fc015f1f1031426ab7c339b8805c3c" }, "downloads": -1, "filename": "collective.nitf-1.0a2.zip", "has_sig": false, "md5_digest": "9e4c11e1d6ba0260d97f8ec590895ba4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 106885, "upload_time": "2012-06-18T22:30:43", "url": "https://files.pythonhosted.org/packages/34/22/ba91e7f8e49f04ffb39348729dd4807594646bebd656fa58f88d7c52ef92/collective.nitf-1.0a2.zip" } ], "1.0a3": [ { "comment_text": "", "digests": { "md5": "73c63321c6ab227c79ab89a913665370", "sha256": "2b105f9d2614c3276fb693d3b4411e1376f853ab5663960287fa523ccf6bfca1" }, "downloads": -1, "filename": "collective.nitf-1.0a3.zip", "has_sig": false, "md5_digest": "73c63321c6ab227c79ab89a913665370", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 101918, "upload_time": "2012-07-06T23:40:44", "url": "https://files.pythonhosted.org/packages/2c/87/493f2c9e90a6ff07d8d110af5fb5c3ec7e01e5170a897e8c981601f57557/collective.nitf-1.0a3.zip" } ], "1.0b1": [ { "comment_text": "", "digests": { "md5": "e0eb272c89dc97ed1176daef931b6ff7", "sha256": "389f247a5eef60924affaf53602c9f90480f6b5b5b9a2d8bc4326e6bc46d8c8a" }, "downloads": -1, "filename": "collective.nitf-1.0b1.zip", "has_sig": false, "md5_digest": "e0eb272c89dc97ed1176daef931b6ff7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 118153, "upload_time": "2013-04-18T00:27:17", "url": "https://files.pythonhosted.org/packages/a8/0a/8a9654ba2b90116e7868a863eaefd3b71ec30ed0cef2a6714022db1e6bad/collective.nitf-1.0b1.zip" } ], "1.0b10": [ { "comment_text": "", "digests": { "md5": "e6003ee418193cf9cdde8f5c1d284fe4", "sha256": "50ead0cd551303c1507aa2f8f5161d97e65e9c0c9e4d6106bcbe7b6bb508a10c" }, "downloads": -1, "filename": "collective.nitf-1.0b10.tar.gz", "has_sig": false, "md5_digest": "e6003ee418193cf9cdde8f5c1d284fe4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78974, "upload_time": "2017-02-16T14:03:13", "url": "https://files.pythonhosted.org/packages/cc/2d/f3c081a6f8121e0873bcf23cf2c960c6b2d548db39c023bc90937c251161/collective.nitf-1.0b10.tar.gz" } ], "1.0b2": [ { "comment_text": "", "digests": { "md5": "43838da917235ce2fb042cd4cacfc0b1", "sha256": "e07fa3ed855fd66d7dea9d02b509264c90c37feee9c3c542d0d5564da1fe3fba" }, "downloads": -1, "filename": "collective.nitf-1.0b2.zip", "has_sig": false, "md5_digest": "43838da917235ce2fb042cd4cacfc0b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 120338, "upload_time": "2013-05-02T14:45:15", "url": "https://files.pythonhosted.org/packages/b5/29/0c07cd2d37aeaed97a265f7318deb20fef5c868e6f414841ada5f887e919/collective.nitf-1.0b2.zip" } ], "1.0b3": [ { "comment_text": "", "digests": { "md5": "31c946aa0a371d70d118bf76328138db", "sha256": "e35ba826275ceaae5f3cba720e96c8875c5d48dda3469976ec38b3be498382f1" }, "downloads": -1, "filename": "collective.nitf-1.0b3.zip", "has_sig": false, "md5_digest": "31c946aa0a371d70d118bf76328138db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 122936, "upload_time": "2013-07-23T03:03:17", "url": "https://files.pythonhosted.org/packages/b4/81/fdac83741262990fad693bd4fcd62f73d25db973a0290baa66e63f40bc6f/collective.nitf-1.0b3.zip" } ], "1.0b4": [ { "comment_text": "", "digests": { "md5": "6a39c9a74f10f26eb4cb2c6835c6d74e", "sha256": "83d657815f7157e82c8c4deb046d1d513b70f61fb62b30a795ac81f274d1f50d" }, "downloads": -1, "filename": "collective.nitf-1.0b4.zip", "has_sig": false, "md5_digest": "6a39c9a74f10f26eb4cb2c6835c6d74e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 132011, "upload_time": "2014-12-26T17:34:28", "url": "https://files.pythonhosted.org/packages/e0/e7/70dfd4c95c16a0d95592e7e98e7dbe354658c1aecde5f2d874e6b2837114/collective.nitf-1.0b4.zip" } ], "1.0b5": [ { "comment_text": "", "digests": { "md5": "8da3f38c5e7b03eab5ef6fdcd428c2f0", "sha256": "4be081bdf7eb739a6b80a36afc7f2af1bc32c8983a308fa0e3f34391da537abd" }, "downloads": -1, "filename": "collective.nitf-1.0b5.zip", "has_sig": false, "md5_digest": "8da3f38c5e7b03eab5ef6fdcd428c2f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 120080, "upload_time": "2015-05-01T19:13:24", "url": "https://files.pythonhosted.org/packages/8d/b9/e389ca3b08c71d639c08d92e89cec0b2275e5102ae13c4d00d2a7332fca6/collective.nitf-1.0b5.zip" } ], "1.0b6": [ { "comment_text": "", "digests": { "md5": "f42d9f4702889acb613b3bd1ddc93fc8", "sha256": "c40f514d22f9f4d7e294932e595672672fead700c11e9c7eb69f36480a7dbab5" }, "downloads": -1, "filename": "collective.nitf-1.0b6-py2-none-any.whl", "has_sig": false, "md5_digest": "f42d9f4702889acb613b3bd1ddc93fc8", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 107575, "upload_time": "2015-09-30T18:05:40", "url": "https://files.pythonhosted.org/packages/dc/67/7d4660eeddfe1374609fa64171cbaf761ccf1bdcb675e126242025b4a639/collective.nitf-1.0b6-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "28b6ff140b2f28c2151fc9c32e9c4b93", "sha256": "626c63219de88441e4d5ac265946b6e447c35072f13177bd3fb2aa51212959d3" }, "downloads": -1, "filename": "collective.nitf-1.0b6.tar.gz", "has_sig": false, "md5_digest": "28b6ff140b2f28c2151fc9c32e9c4b93", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81023, "upload_time": "2015-09-30T18:05:47", "url": "https://files.pythonhosted.org/packages/3d/dd/c761fc1a4b814d44898b2eeaa3470ef79c4500bfa4e4c8eea597167714d3/collective.nitf-1.0b6.tar.gz" } ], "1.0b7": [ { "comment_text": "", "digests": { "md5": "5bdf9e3f0866d9f997195aeb91528c46", "sha256": "d5a7c16ea3a4210b235c6985fda67b89366781cb4cd3d2f0442ba12c86bb3846" }, "downloads": -1, "filename": "collective.nitf-1.0b7-py2-none-any.whl", "has_sig": false, "md5_digest": "5bdf9e3f0866d9f997195aeb91528c46", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 107755, "upload_time": "2015-10-01T19:32:26", "url": "https://files.pythonhosted.org/packages/39/0f/185293e4c69dc3983689345986116fbb78fe7ce406a74e92c753a03b591d/collective.nitf-1.0b7-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2626fddb851b89bb6da21327a18de755", "sha256": "fde3be402efdc9795d41ab63702319e96167416aca62fe2981c33df88b044a00" }, "downloads": -1, "filename": "collective.nitf-1.0b7.tar.gz", "has_sig": false, "md5_digest": "2626fddb851b89bb6da21327a18de755", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81271, "upload_time": "2015-10-01T19:32:32", "url": "https://files.pythonhosted.org/packages/06/c6/4e773d745074e238a84f5cdf972df7ed763c3b2b0debd1c427cab680ca1c/collective.nitf-1.0b7.tar.gz" } ], "1.0b8": [ { "comment_text": "", "digests": { "md5": "4bdf86154d164a90754f1d4cb2b41a57", "sha256": "901ca2f73a115929a9548e4d4235aacaf3c6a30c60b24594d5089292b0462ba1" }, "downloads": -1, "filename": "collective.nitf-1.0b8-py2-none-any.whl", "has_sig": false, "md5_digest": "4bdf86154d164a90754f1d4cb2b41a57", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 108161, "upload_time": "2015-10-16T19:48:51", "url": "https://files.pythonhosted.org/packages/06/b5/18c2c8a6aefce523b6551df4ca97c491252a3fa95cba12b321ec1e98c4ed/collective.nitf-1.0b8-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "36e01aba4b8a77ff5ca033b3a7578488", "sha256": "857583d5cbd379b5e984460cb08583940bdd62809c41689d69f57371f0eca483" }, "downloads": -1, "filename": "collective.nitf-1.0b8.tar.gz", "has_sig": false, "md5_digest": "36e01aba4b8a77ff5ca033b3a7578488", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81655, "upload_time": "2015-10-16T19:49:10", "url": "https://files.pythonhosted.org/packages/fc/fe/0860929fa05b36a22781fd26ac1c499d7feaf4409f5501539396aacab62a/collective.nitf-1.0b8.tar.gz" } ], "1.0b9.dev0": [ { "comment_text": "", "digests": { "md5": "a9ce301f8d29b4a1386b6736cde19e12", "sha256": "143ee3970e0ffbeb67c80bfb989e7406058b0220486666f2e94c02daa26f027a" }, "downloads": -1, "filename": "collective.nitf-1.0b9.tar.gz", "has_sig": false, "md5_digest": "a9ce301f8d29b4a1386b6736cde19e12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78916, "upload_time": "2017-02-16T13:57:44", "url": "https://files.pythonhosted.org/packages/39/71/046f8ef130d82036db3ec1de1737a0816ec3c7c596c2ddaf7ed3776869f9/collective.nitf-1.0b9.tar.gz" } ], "2.0a1": [ { "comment_text": "", "digests": { "md5": "550c3a1299e961d42e6c68b1fa280671", "sha256": "b10d953a812275f9294549629a26dc11d872ce558822bec951f18a85825fed7e" }, "downloads": -1, "filename": "collective.nitf-2.0a1-py2-none-any.whl", "has_sig": false, "md5_digest": "550c3a1299e961d42e6c68b1fa280671", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 105149, "upload_time": "2015-09-30T19:51:01", "url": "https://files.pythonhosted.org/packages/ec/c1/fb11ed6443c87be3c9b532e84561da8f36bb922e75161c271feccb2f2680/collective.nitf-2.0a1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3f9c208024be438175a9c831aac50414", "sha256": "be43e0f2a8034c02ce16a8b9e6a839737531db910fb0553875c3e287f839be55" }, "downloads": -1, "filename": "collective.nitf-2.0a1.tar.gz", "has_sig": false, "md5_digest": "3f9c208024be438175a9c831aac50414", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74407, "upload_time": "2015-09-30T19:51:09", "url": "https://files.pythonhosted.org/packages/26/8f/f1a63f9182ab167e64207e8ca8930ebb4b827a60c30fe7a7b3b13541ffd3/collective.nitf-2.0a1.tar.gz" } ], "2.0b1": [ { "comment_text": "", "digests": { "md5": "29a978c4817c5e09e4494ff09ea39a26", "sha256": "9ee0988f8369eeb47ddf6ce554f92ca46459a066b93583b2c1934c9f18b3d56a" }, "downloads": -1, "filename": "collective.nitf-2.0b1-py2-none-any.whl", "has_sig": false, "md5_digest": "29a978c4817c5e09e4494ff09ea39a26", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 105500, "upload_time": "2016-02-29T14:36:54", "url": "https://files.pythonhosted.org/packages/aa/2e/d1d46cd80f48a90aae8102461f62ca4a9b91a16910d2d7d8149e3156e244/collective.nitf-2.0b1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2c48df14d271b47b0dff0d0d832368ed", "sha256": "428170754b7514943e2062e820cbfdf62fc48c8aa54be837c04e32a9e0d1d9dd" }, "downloads": -1, "filename": "collective.nitf-2.0b1.tar.gz", "has_sig": false, "md5_digest": "2c48df14d271b47b0dff0d0d832368ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73109, "upload_time": "2016-02-29T14:37:03", "url": "https://files.pythonhosted.org/packages/52/fd/3783d7e17c20b0dd8c71f41608d50e7092263add6b46d9cad264320a6a45/collective.nitf-2.0b1.tar.gz" } ], "2.0b2": [ { "comment_text": "", "digests": { "md5": "8f4afd1297a1aee80d072d2214cfd4ec", "sha256": "0f6d5ade3ddf2822e79f2a772d7f5a317d277dea43efbc1bc8a81a2a6db9f89d" }, "downloads": -1, "filename": "collective.nitf-2.0b2-py2-none-any.whl", "has_sig": false, "md5_digest": "8f4afd1297a1aee80d072d2214cfd4ec", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 299407, "upload_time": "2016-07-27T17:10:11", "url": "https://files.pythonhosted.org/packages/2f/3b/37e4c66440b13ef6c23f9435db00523e7fd84c79ad331cced4322c3f7e57/collective.nitf-2.0b2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6063a1b45331ed6b73f39519c415bd5f", "sha256": "2504f83a8648bd998d7da1d14cf0a3eee1de1a6ee88ce16c85a8beca9426ae14" }, "downloads": -1, "filename": "collective.nitf-2.0b2.tar.gz", "has_sig": false, "md5_digest": "6063a1b45331ed6b73f39519c415bd5f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 270610, "upload_time": "2016-07-27T17:10:20", "url": "https://files.pythonhosted.org/packages/4a/5c/413ea5231ddcbcdd60facfc75766ea32157fb439559b4d392c56300081d2/collective.nitf-2.0b2.tar.gz" } ], "2.0b3": [ { "comment_text": "", "digests": { "md5": "13edb61e04f5049db2d99d4db053e9ab", "sha256": "a69817decc975e51efcecc568088e3da3992582b310d04b90078e8c78bf247fe" }, "downloads": -1, "filename": "collective.nitf-2.0b3-py2-none-any.whl", "has_sig": false, "md5_digest": "13edb61e04f5049db2d99d4db053e9ab", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 299608, "upload_time": "2016-09-12T15:46:06", "url": "https://files.pythonhosted.org/packages/1c/c6/6af2a20429269f6a893279a4973684edfbbdb8a4d8eb2df2d4c348e9a157/collective.nitf-2.0b3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "95fc8de8661fb44f06d0ee525aeb69ce", "sha256": "ee51677c3be012d317f3fd921213f0bb7bcd0d13c90324dfbc755c05e570f661" }, "downloads": -1, "filename": "collective.nitf-2.0b3.tar.gz", "has_sig": false, "md5_digest": "95fc8de8661fb44f06d0ee525aeb69ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 270856, "upload_time": "2016-09-12T15:46:11", "url": "https://files.pythonhosted.org/packages/6c/36/8e60e16cff42b86ed8b5c63cc074ae760eddb499399143609d16b874d497/collective.nitf-2.0b3.tar.gz" } ], "2.0b4": [ { "comment_text": "", "digests": { "md5": "b10103c333cb8faffa3745016118072f", "sha256": "16cb65af066d09c67e8b60f15e2a92b877b7edf0d11bf3368473869f000dcfe5" }, "downloads": -1, "filename": "collective.nitf-2.0b4-py2-none-any.whl", "has_sig": false, "md5_digest": "b10103c333cb8faffa3745016118072f", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 300014, "upload_time": "2016-11-03T21:45:30", "url": "https://files.pythonhosted.org/packages/75/32/bba91635de11f0e86679a122d062547872b07e4f9d55cf232a74d2fa4d69/collective.nitf-2.0b4-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8ec7924b3329060874dc263564e3b322", "sha256": "437862b034c542b2c51f66ee27ea31c3fbd4be3b108b48217b6b0061d1ebff2b" }, "downloads": -1, "filename": "collective.nitf-2.0b4.tar.gz", "has_sig": false, "md5_digest": "8ec7924b3329060874dc263564e3b322", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 271295, "upload_time": "2016-11-03T21:45:35", "url": "https://files.pythonhosted.org/packages/0b/5a/e6b14595a249e3203ef93a7fa05e6d7387c3c8314ffcfadf52a1b45eeaac/collective.nitf-2.0b4.tar.gz" } ], "2.1b1": [ { "comment_text": "", "digests": { "md5": "c3baa24786afc9cf37ef55bf914856be", "sha256": "1aa7fe82c67cc54b515a461a50a63caf7b483193848a1a10ea253cf54fc9c458" }, "downloads": -1, "filename": "collective.nitf-2.1b1.tar.gz", "has_sig": false, "md5_digest": "c3baa24786afc9cf37ef55bf914856be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 272720, "upload_time": "2017-02-16T13:48:13", "url": "https://files.pythonhosted.org/packages/a1/7c/7ea4876f81cbb0f3ddcb5846053885dc248bcef96cd3a99d01d6103ba3a5/collective.nitf-2.1b1.tar.gz" } ], "2.1b2": [ { "comment_text": "", "digests": { "md5": "8e82f268edd535b6cb03abb638a2e542", "sha256": "feb32343d075841071ecb6b93f92c48ffe380c5f65684706ed5959dbe42ebf57" }, "downloads": -1, "filename": "collective.nitf-2.1b2.tar.gz", "has_sig": false, "md5_digest": "8e82f268edd535b6cb03abb638a2e542", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 274970, "upload_time": "2017-06-12T22:46:12", "url": "https://files.pythonhosted.org/packages/45/30/d243e958087106e646dac2f0938ce2e60befa9c88fb71ac9b7b30bca54e2/collective.nitf-2.1b2.tar.gz" } ], "2.1b3": [ { "comment_text": "", "digests": { "md5": "6e5e0684c0605ae8dac051c2769d65ca", "sha256": "075853f6ad9c88b7d9ea4af7c5ba27d64e6bb56a8d7e27401c0132c1860108b9" }, "downloads": -1, "filename": "collective.nitf-2.1b3.tar.gz", "has_sig": false, "md5_digest": "6e5e0684c0605ae8dac051c2769d65ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 275683, "upload_time": "2017-07-05T12:26:40", "url": "https://files.pythonhosted.org/packages/fc/ca/6c169f75c2d6df71aeecc042b6ebbf96f9f326c03fc51b0a87d36442697f/collective.nitf-2.1b3.tar.gz" } ], "2.1b4": [ { "comment_text": "", "digests": { "md5": "75819f3cebefcd577e13cb134c86eb14", "sha256": "373fe3a2af429b23ec6be3c7d637881632e2949a5af902c24b7c73813720fbb2" }, "downloads": -1, "filename": "collective.nitf-2.1b4.tar.gz", "has_sig": false, "md5_digest": "75819f3cebefcd577e13cb134c86eb14", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 275912, "upload_time": "2017-10-18T15:39:54", "url": "https://files.pythonhosted.org/packages/12/44/08a9fd90bd24e8a3ee834db8478016f88bef4b5a0d885d12a1c53f2fb29e/collective.nitf-2.1b4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "75819f3cebefcd577e13cb134c86eb14", "sha256": "373fe3a2af429b23ec6be3c7d637881632e2949a5af902c24b7c73813720fbb2" }, "downloads": -1, "filename": "collective.nitf-2.1b4.tar.gz", "has_sig": false, "md5_digest": "75819f3cebefcd577e13cb134c86eb14", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 275912, "upload_time": "2017-10-18T15:39:54", "url": "https://files.pythonhosted.org/packages/12/44/08a9fd90bd24e8a3ee834db8478016f88bef4b5a0d885d12a1c53f2fb29e/collective.nitf-2.1b4.tar.gz" } ] }