Metadata-Version: 1.1
Name: collective.sgvizler
Version: 1.0.1
Summary: SGVizler integration for Plone 4
Home-page: https://pypi.python.org/pypi/collective.sgvizler
Author: Encolpe DEGOUTE
Author-email: encolpe.degoute@free.fr
License: GPL version 2
Description: 
        ==============================================================================
        collective.sgvizler
        ==============================================================================
        
        SGVizler is a library that can directly question SPARQL endpoint to visualize opendat in your site.
        This intregration of version 0.6 use dexterity type to be flexible with parameters.
        
        Due to time limitation for the exercise this package is not done in the Plone 5 way.
        
        Enjoy.
        
        Features
        --------
        
        - SGVizler 0.6
        - Dexterity type to make the rendering
        
        See the SGVizler documentation and screenshot below to see examples.
        
        
        Examples
        --------
        
        This add-on can be seen in action at the following sites:
        
        - http://dev.data2000.no/sgvizler/wiki/Sgvizler#Screenshots
        - http://doc.data2000.no/sgvizler/0.6/classes/sgvizler.html
        
        
        Documentation
        -------------
        
        TODO
        #Full documentation for end users can be found in the "docs" folder, and is also available online at http://docs.plone.org/foo/bar
        
        Local Setup
        ===========
        
        As SPARQL works with prefix in its query, a good thing can be to overload the
        *sgvizler-setup.js* file.
        
        Proxy Configuration
        ===================
        
        SGVizler does AJAX request between domains. You need to configure your front
        proxy to accept data from domains where are SPARQL endpoints, id est you need
        to add *connect-src* and *script-src* provider in the *Content-Security-Policy*
        HTTP header.
        
        Example with NGinx:
        
        .. code:: nginx
        
            add_header X-Frame-Options "SAMEORIGIN";
            add_header Strict-Transport-Security "max-age=15768000; includeSubDomains";
            add_header X-XSS-Protection "1; mode=block";
            add_header X-Content-Type-Options "nosniff";
            add_header Content-Security-Policy "default-src 'self'; script-src 'self' 'unsafe-eval' 'unsafe-inline' http://endpoint.example.com http://sws.ifi.uio.no https://www.google.com; style-src 'self' 'unsafe-inline'; img-src 'self' 'unsafe-inline' http://mediaserver.example.com; media-src 'self' http://mediaserver.example.com http://videoserver.example.com; font-src 'self' 'unsafe-inline'; object-src 'self' http://endpoint.example.com http://sws.ifi.uio.no; connect-src 'self' http://endpoint.example.com http://sws.ifi.uio.no";
        
        Notice that you need to open your server to google.com JS api (https://www.google.com/jsapi)
        until a better implementation of requirements in this project.
        
        
        Translations
        ------------
        
        This product has been translated into
        
        - French (TODO)
        
        
        Installation
        ------------
        
        Install collective.sgvizler by adding it to your buildout::
        
            [buildout]
        
            ...
        
            eggs =
                collective.sgvizler
        
        
        and then running ``bin/buildout``
        
        
        Contribute
        ----------
        
        - Issue Tracker: https://github.com/collective/collective.sgvizler/issues
        - Source Code: https://github.com/collective/collective.sgvizler
        - Documentation: http://dev.data2000.no/sgvizler/wiki/Sgvizler/0.6/Using
        
        
        Support
        -------
        
        If you are having issues, please let us know.
        You can contact the owner (don't abuse please): Gerard.Vidal@ens-lyon.fr
        
        
        License
        -------
        
        This work was planned and done with the courtesy of the IFÉ - École Normale
        Supérieure de Lyon.
        
        The project is licensed under the BSD.
        
        Contributors
        ============
        
        - Encolpe DEGOUTE, encolpe.degoute@free.fr
        - Gérard VIDAL, Gerard.Vidal@ens-lyon.fr
        
        Changelog
        =========
        
        1.0.1 (2015-12-17)
        ------------------
        
        - Fix double compression problem on minified javascript library
          [encolpe]
        
        1.0   2015-12-16
        ----------------
        
        - Initial release.
          [encolpe]
        
        - Integrate SGVizler 0.6
          [encolpe]
        
        - Add a Dexterity type to customize SGVizler rendering
          [encolpe]
        
        
Keywords: Python Plone
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Plone
Classifier: Framework :: Plone :: 5.0
Classifier: Framework :: Plone :: 4.3
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
