Metadata-Version: 2.1
Name: redturtle.lookup
Version: 3.1.0
Summary: List products information for different Plone sites in a single instance
Home-page: https://github.com/RedTurtle/redturtle.lookup
Author: RedTurtle
Author-email: sviluppoplone@redturtle.it
License: GPL
Description: Introduction
        ============
        
        This product overrides Plone's standard view for ZMI root with an overview of available Plone sites.
        
        Features
        ========
        
        - Possibility to have an overview about sites or products.
        - In sites list, show which sites need to upgrade products and let to manage products install/upgrade/uninstall profiles.
        - In products list, show which sites have a specific product installed and let to manage install/upgrade/uninstall profiles for each site.
        
        
        Installation
        ============
        
        Install redturtle.lookup by adding it to your buildout::
        
            [buildout]
        
            ...
        
            eggs =
                redturtle.lookup
        
        
        and then running ``bin/buildout``
        
        
        How to use
        ==========
        
        You simply need to go to your ZMI root (for example: http://localhost:8080).
        
        .. image:: https://raw.githubusercontent.com/RedTurtle/redturtle.lookup/master/docs/lookup.gif
        
        
        Development
        ===========
        
        There are two main parts:
        
        - api
        - app
        
        Api
        ---
        
        Api folder is the folder where there are some api endpoints called from the frontend view to manage sites and products.
        
        App
        ---
        
        App folder contains a React app bootstrapped with create-react-app.
        
        The app is bult with sematic-ui framework.
        
        To develop, you need to start a Plone site in background:
        you can use the buildout in this package, or the instance that you want.
        
        In package.json there is a proxy set for 8080 port, so if your instance runs on another port, you need to change that value.
        
        The first time that you develop react app, you need to install its dependencies::
        
            yarn
         
        Then you need to run the dev server::
        
            yarn start
           
        To build a new version of the app::
        
            yarn build
        
        The new build will be automatically seen in the Plone view.
        
        Contribute
        ==========
        
        - Issue Tracker: https://github.com/RedTurtle/redturtle.lookup/issues
        - Source Code: https://github.com/RedTurtle/redturtle.lookup
        
        
        License
        =======
        
        The project is licensed under the GPLv2.
        
        
        Authors
        =======
        
        This product was developed by RedTurtle Technology team.
        
        .. image:: http://www.redturtle.it/redturtle_banner.png
           :alt: RedTurtle Technology Site
           :target: http://www.redturtle.it/
        
        Changelog
        =========
        
        3.1.0 (2019-02-11)
        ------------------
        
        - Refactoring to improve speed when we have several sites with a lot of products.
          [cekk]
        - Fix uninstall endpoint. Now use portal_quickinstaller to uninstall products properly
          [cekk]
        
        
        3.0.0 (2018-07-09)
        ------------------
        
        - New interface.
          [cekk]
        
        
        2.4 (2016-10-13)
        ----------------
        
        - Disabled csrf [cekk]
        
        
        2.3 (2014-10-20)
        ----------------
        
        - Fix styles and removed datatables [cekk]
        
        
        2.2 (2014-10-20)
        ----------------
        
        - View improvements: font-awesome dependency and refactoring buttons in table [cekk]
        
        
        2.1 (2014-09-09)
        ----------------
        
        - New view that allows to install/upgrade products [cekk]
        
        
        2.0 (2012-12-11)
        ----------------
        
        Plone 4 compatible version
        
        * z3c.autoinclude support [keul]
        * egg cleanup [keul]
        * fixed permission for ``@@lookup.sites`` [keul]
        * display a warning icon if a site needs to be upgraded [keul]
        * ``@@lookup.sites`` now properly displayed [keul]
        * i18n support [keul]
        
        1.0.2 (Unreleased)
        ------------------
        
        * fix https://code.redturtle.it/pm/p/er--portale/ticket/271 [mauro]
        
        1.0.1 (2011/05/23)
        --------------------
        
        * sites [mauro]
        * anonymous users [mauro]
        * zelenium tests [mauro]
        * jquery accordion [mauro]
        
        1.0 - (2010/03/05)
        ------------------
        
        * Initial release
        
Keywords: Python Plone
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Plone
Classifier: Framework :: Plone :: 5.0
Classifier: Framework :: Plone :: 5.1
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)
Provides-Extra: test
