Metadata-Version: 1.1
Name: sc.embedder
Version: 1.2b2
Summary: This packages contains a Dexterity-based content type that 
Home-page: http://www.simplesconsultoria.com.br
Author: Simples Consultoria
Author-email: products@simplesconsultoria.com.br
License: GPLv2
Description: ***********
        sc.embedder
        ***********
        
        .. contents::
        
        Life, the Universe, and Everything
        ----------------------------------
        
        This packages contains a Dexterity-based content type that allows you to
        embedded content (such as photos or videos) from third parties into your Plone
        site.
        
        You can easily embed content from Flickr, SlideShare, SoundCloud, Vimeo,
        Wikipedia, YouTube, and many other supporting the `oEmbed`_ format
        especification.
        
        Mostly Harmless
        ---------------
        
        .. image:: http://img.shields.io/pypi/v/sc.embedder.svg
            :target: https://pypi.python.org/pypi/sc.embedder
        
        .. image:: https://img.shields.io/travis/simplesconsultoria/sc.embedder/master.svg
            :target: http://travis-ci.org/simplesconsultoria/sc.embedder
        
        .. image:: https://img.shields.io/coveralls/simplesconsultoria/sc.embedder/master.svg
            :target: https://coveralls.io/r/simplesconsultoria/sc.embedder
        
        Got an idea? Found a bug? Let us know by `opening a support ticket <https://github.com/simplesconsultoria/sc.embedder/issues>`_.
        
        Don't Panic
        -----------
        
        Installation
        ^^^^^^^^^^^^
        
        To enable this product in a buildout-based installation:
        
        1. Edit your buildout.cfg and add ``sc.embedder`` to the list of eggs to install:
        
        .. code-block:: ini
        
            [buildout]
            ...
            eggs =
                sc.embedder
        
        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 `sc.embedder`` and click the 'Activate' button.
        
        Use
        ^^^
        
        Once the product is installed you will note that you are available to add a
        Embedder content type. When you attempt to add an item you will see the
        fields:
        
        - Content URL
        - Description
        - Embed html code
        - Width
        - Height
        - Player position
        - Body text
        - Alternate content
        - Image
        
        In the URL field you must put the url of you content. For example:
        
            http://vimeo.com/17914974
        
        and then click the *load* button. This will automatically populate the form
        with some data from the third party content. Which fields are populated depends
        on the individual provider. But in most cases the fields: title, description, width,
        height and embed html fields will be filled.
        
        **Note**: *Some providers only support width, height and title. So the fields
        like description or html embed code will need to be filled manually.
        This information is normally found in the page where the url points to*.
        
        Layout
        ^^^^^^
        With *player position* field you can set where the embed multimedia is going
        to be render regarding the body text. You have the options *top, bottom, left
        and right*.
        
        Body text will be the main information that will describe the content.
        
        The *alternate content* is to give a description or transcription to an
        individual that is no able to hear. In the layout this is hidden by default.
        There is a link called **alternate content** that will show or hide again the
        content of this field by clicking on it.
        
        The *Image* field is just to assign an image to the object that will give a
        quick visual description of the content. The idea is to show it in listing
        views or covers.
        
        Providers
        ^^^^^^^^^
        
        This product uses `python-oembed <https://pypi.python.org/pypi/python-oembed>`_.
        You can check its documentation to see a list of supported providers.
        
        .. _`oEmbed`: http://www.oembed.com/
        
        Share and Enjoy
        ---------------
        
        This package would not have been possible without the contribution of the following people:
        
        - Alejandro Pereira
        - André Nogueira
        - Cleber J Santos
        - Héctor Velarde
        - João S. O. Bueno
        - Juan Pablo Giménez
        - Rodrigo Ferreira de Souza
        - `et alii`_
        
        Development sponsored by `Simples Consultoria`_.
        
        .. _`Simples Consultoria`: http://www.simplesconsultoria.com.br/
        .. _`et alii`: https://github.com/simplesconsultoria/sc.embedder/graphs/contributors
        
        Changelog
        ---------
        
        There's a frood who really knows where his towel is.
        
        1.2b2 (2017-01-09)
        ^^^^^^^^^^^^^^^^^^
        
        - Update list of package dependencies.
          [hvelarde]
        
        - Fix width validator.
          [hvelarde]
        
        - Remove dependency on plone.directives.form and latest traces of Grok.
          [hvelarde]
        
        
        1.2b1 (2016-12-16)
        ^^^^^^^^^^^^^^^^^^
        
        - Remove dependency on five.grok (closes `#63`_).
          [rodfersou]
        
        - Package is compatible with Plone 4.2 again.
          [hvelarde]
        
        - Avoid `TypeError` while running upgrade step (fixes `#58`_).
          [hvelarde]
        
        
        1.1b2 (2016-04-25)
        ^^^^^^^^^^^^^^^^^^
        
        - Implement `Subresource Integrity <https://www.w3.org/TR/SRI/>`_ (closes `#55`_).
          [cleberjsantos]
        
        - Sanitize <iframe> tags to avoid including invalid HTML attributes;
          an upgrade step is included to clean up existing objects (closes `#44`_).
          [rodfersou, hvelarde]
        
        - Update Video.js to v5.8 and load it from CDN (closes `#50`_).
          [rodfersou]
        
        
        1.1b1 (2016-03-24)
        ^^^^^^^^^^^^^^^^^^
        
        - Remove hard dependency on plone.app.referenceablebehavior as Archetypes is no longer the default framework in Plone 5.
          Under Plone < 5.0 you should now explicitly add it to the `eggs` part of your buildout configuration to avoid issues while upgrading.
          [hvelarde]
        
        - Fixes issue in TinyMCE plugin when clicked in Insert button (closes `#16`_).
          [idgserpro]
        
        - Fix error in TinyMCE plugin if the property icon_visibility is disabled (closes `#42`_).
          [rodfersou]
        
        
        1.0b5 (2015-11-18)
        ^^^^^^^^^^^^^^^^^^
        
        - Fix the stripping of embed code when it has more than one tag, like in Facebook videos (closes `#39`_).
          [rodfersou]
        
        - Use "application/javascript" media type instead of the obsolete "text/javascript".
          [hvelarde]
        
        - Remove Chrome Frame from ``X-UA-Compatible`` HTTP header as it's deprecated.
          [hvelarde]
        
        - Allow use of percent sign (%) on width properties (closes `#6`_).
          [rodfersou, hvelarde]
        
        - Added italian translation
          [keul]
        
        
        1.0b4 (2015-09-03)
        ^^^^^^^^^^^^^^^^^^
        
        - Add Embedder tile for collective.cover (closes `#32`_).
          [rodfersou]
        
        - Brazilian Portuguese and Spanish translations were updated.
          [rodfersou, hvelarde]
        
        - Add portal message instead of log info on HTTP request errors (closes `#14`_).
          [rodfersou]
        
        - Add validation in URL field to avoid hiding errors when using the Load button (closes `#20`_).
          [rodfersou]
        
        - Remove dependency on collective.oembed (closes `#3`_).
          [hvelarde]
        
        - Drop support for Plone 4.1 and 4.2; remove dependency on unittest2.
          [hvelarde]
        
        
        1.0b3 (2013-07-23)
        ^^^^^^^^^^^^^^^^^^
        
        - Fix a couple AJAX quoting/unquoting problems on the TinyMCE plugin.
          [jsbueno]
        
        - Add helper methods image_thumb and tag in order to be listed in
          folder_summary_view [ericof]
        
        - Fix an UnicodeDecodeError with our plugin for TinyMCE [ericof]
        
        
        1.0b2 (2012-12-03)
        ^^^^^^^^^^^^^^^^^^
        
        - Fix a conflict with plone.formwidget.namedfile NamedImage widget
          implementation. [jpgimenez]
        
        
        1.0b1 (2012-11-27)
        ^^^^^^^^^^^^^^^^^^
        
        - Update package dependecies for Plone 4.3 compatibility. [hvelarde]
        
        - Fix functional tests. [hvelarde]
        
        - Rename package: was sc.content.embedder and now is sc.embedder. [hvelarde]
        
        - Support for VideoJS as fallback if static file and no supported provider.
          [jpgimenez]
        
        - Fixed the rendering of the embedded code to not break the main view.
          [jpgimenez]
        
        - Allow selecting, embedding and rendering sc.embedder content into TinyMCE
          widgets as if it were images. [jpgimenez]
        
        - VideoJS embedder code implemented as an iframe, to simplify the integration
          with TinyMCE. [jpgimenez]
        
        
        1.0a3 (2012-10-04)
        ^^^^^^^^^^^^^^^^^^
        
        - Fixed KeyError: 'width' when saving embeded HTML with percentages.
          [davilima6]
        
        
        1.0a2 (2012-09-05)
        ^^^^^^^^^^^^^^^^^^
        
        - Functional tests were updated to run with robotframework-selenium2library.
          [hvelarde]
        
        - i18n was fixed and Spanish translation was updated. [hvelarde]
        
        - Brazilian Portuguese translation was fixed. [agnogueira]
        
        
        1.0a1 (2012-09-05)
        ^^^^^^^^^^^^^^^^^^^
        
        - Initial release.
        
        .. _`#3`: https://github.com/simplesconsultoria/sc.embedder/issues/3
        .. _`#6`: https://github.com/simplesconsultoria/sc.embedder/issues/6
        .. _`#14`: https://github.com/simplesconsultoria/sc.embedder/issues/14
        .. _`#16`: https://github.com/simplesconsultoria/sc.embedder/issues/16
        .. _`#20`: https://github.com/simplesconsultoria/sc.embedder/issues/20
        .. _`#32`: https://github.com/simplesconsultoria/sc.embedder/issues/32
        .. _`#39`: https://github.com/simplesconsultoria/sc.embedder/issues/39
        .. _`#42`: https://github.com/simplesconsultoria/sc.embedder/issues/42
        .. _`#44`: https://github.com/simplesconsultoria/sc.embedder/issues/44
        .. _`#50`: https://github.com/simplesconsultoria/sc.embedder/issues/50
        .. _`#55`: https://github.com/simplesconsultoria/sc.embedder/issues/55
        .. _`#58`: https://github.com/simplesconsultoria/sc.embedder/issues/58
        .. _`#63`: https://github.com/simplesconsultoria/sc.embedder/issues/63
        
Keywords: multimedia video audio oembed plone embed embedder
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Plone
Classifier: Framework :: Plone :: 4.2
Classifier: Framework :: Plone :: 4.3
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: JavaScript
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Multimedia
Classifier: Topic :: Office/Business
Classifier: Topic :: Software Development :: Libraries :: Python Modules
