Metadata-Version: 1.1
Name: cs.auth.facebook
Version: 1.0b1
Summary: Facebook authentication plugin for Plone
Home-page: http://github.com/codesyntax/cs.auth.facebook
Author: Mikel Larreategi
Author-email: mlarreategi@codesyntax.com
License: GPL
Description: Introduction
        ============
        
        A PAS plugin to login into a Plone Site using Facebook.
        
        
        Installation and getting started
        -----------------------------------
        
        Add 'cs.auth.facebook' to your buildout.cfg's eggs list.
        
        You have to add a configuration similar to this to your buildout.cfg::
        
         zope-conf-additional = 
            <product-config beaker>
                session type     file 
                session.data_dir ${buildout:directory}/var/sessions/data
                session.lock_dir ${buildout:directory}/var/sessions/lock 
                session.key      beaker.session
                session.secret   this-is-my-secret-${buildout:directory}
            </product-config>
        
        This is needed because we are using collective.beaker to handle Facebook login
        session information.
        
        
        Credit
        --------
        
        This product re-distributes a lot of code written by Martin Aspeli 
        (aka @optilude) in his book "Professional Plone 4 Development" and
        available under GPL license in his personal GitHub account with
        the name 'optilux.facebookauth':
        
          https://github.com/optilude/optilux/tree/chapter-16/src/optilux.facebookauth
          
        
        Changelog
        =========
        
        1.0b1 (2012-07-13)
        -------------------
        
        - Initial release
          [erral]
        
Keywords: plone pas login facebook authentication
Platform: UNKNOWN
Classifier: Framework :: Plone
Classifier: Programming Language :: Python
