collective / collective.nitf

A Dexterity-based content type inspired on the News Industry Text Format specification
8 stars 3 forks source link
dexterity news-article nitf plone

=============== collective.nitf

.. contents:: Table of Contents

Life, the Universe, and Everything

News articles in Plone are instances of the 'News Item' content type: they can contain a title, a description, a body text, an image and some basic metadata. If you publish a couple of items from time to time, this is fine.

But suppose you have to publish dozens of items everyday... How do you tell your readers who they are about? What do they cover? Where do they took place? And, more important, how do you classify them? How do you organize them? How do you tell your readers which ones are newsworthy?

To solve these, and other issues, the IPTC developed XML standards to define the content and structure of news articles. NITF, NewsML and NewsCodes are among these standards and they support the classification, identification and description of a huge number of news articles characteristics.

NITF is intended to structure independent news articles and this package aims to implement a content type inspired by the specification.

Mostly Harmless

.. image:: http://img.shields.io/pypi/v/collective.nitf.svg :target: https://pypi.python.org/pypi/collective.nitf

.. image:: https://img.shields.io/github/workflow/status/collective/collective.nitf/Plone%20package/master?label=GitHub%20Actions :target: https://github.com/collective/collective.nitf/actions/workflows/plone-package.yml

.. image:: https://codecov.io/gh/collective/collective.nitf/branch/master/graph/badge.svg?token=U4hNE2t5sA :target: https://codecov.io/gh/collective/collective.nitf

Got an idea? Found a bug? Let us know by opening a support ticket_.

Don't Panic

Installation ^^^^^^^^^^^^

To enable this product in a buildout-based installation:

. Edit your buildout.cfg and add collective.nitf to the list of eggs to install::

[buildout]
...
eggs =
    collective.nitf

After updating the configuration you need to run ''bin/buildout'', which will take care of updating your system.

Go to the 'Site Setup' page in a Plone site and click on the 'Add-ons' link.

Check the box next to collective.nitf and click the 'Activate' button.

Upgrading from 1.x to 2.x ^^^^^^^^^^^^^^^^^^^^^^^^^

.. Warning:: Upgrades to version 2.x are only supported from latest version of branch 1.x.

You have to be aware of the following changes when migrating from version 1.x to 2.x:

An upgrade step is available to remove old resources, rename the views, and reindex all News Articles to reflect changes. The upgrade step will not remove the plone.app.referenceablebehavior.referenceable.IReferenceable behavior if applied.

Behaviors ^^^^^^^^^

This package includes a behavior called collective.nitf.behaviors.interfaces.ISection. By applying it to a Dexterity-based content type you will get a new field called section.

Helper views ^^^^^^^^^^^^

All news articles provide @@nitf and @@newsml views that are available although are not registered.

You can validate the output of the those views using services like XML validation_.

You may use the NITF Document Type Definition version 3.5 and the XHTML Ruby Module associated with it.

.. IPTC: http://www.iptc.org/ .. NewsCodes: http://www.iptc.org/NewsCodes/ .. NewsML: http://www.newsml.org/ .. NITF: http://www.nitf.org/ .. NITF Document Type Definition: http://www.iptc.org/std/NITF/3.5/specification/nitf-3-5.dtd .. XHTML Ruby Module: http://www.iptc.org/std/NITF/3.5/specification/xhtml-ruby-1.mod .. XML validation: http://www.xmlvalidation.com/ .. opening a support ticket: https://github.com/collective/collective.nitf/issues

Development ^^^^^^^^^^^

We use Webpack to process static resources on this package. Webpack processes LESS and JS files, minifies the resulting CSS and JS, and optimizes all images. The final JS file is also a UMD package, which provides compatibility with most popular script loaders.

To contribute, you should start the instance in one shell and start Webpack watcher on another with the following command:

.. code-block:: bash

$ bin/npm_watch

Then go to webpack/app folder and edit LESS and JS files; Webpack watcher will automatically create the final resources in the right place.

There are also other commands added to handle more complex scenarios. The following command will set the buildout node installation in the system PATH, this way you can use Webpack as described on Webpack docs.

.. code-block:: bash

$ bin/webpack_env

The 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).

.. code-block:: bash

$ bin/npm_dev

The following command rebuilds static files and exit (insted of keep watching the changes):

.. code-block:: bash

$ bin/npm_build