Metadata-Version: 1.0
Name: pas.plugins.sqlalchemy
Version: 0.2
Summary: SQLAlchemy-based PAS user/group/prop store.
Home-page: UNKNOWN
Author: Malthe Borch and Stefan Eletzhofer
Author-email: product-developers@lists.plone.org
License: GNU GPL v2
Description: SQLAlchemy PAS plugin
        =====================
        
        This package is a fork of the SQLPASPlugin. It uses SQLAlchemy as the
        database abstraction layer; some tests have been rewritten but most
        are preserved. It's used in production with a PostgreSQL database.
        
        Setup
        -----
        
        To configure the plugin with a database, use ``z3c.saconfig`` and
        define a named scoped session "pas.plugins.sqlalchemy".
        
        Example::
        
        <include package="z3c.saconfig" file="meta.zcml" />
        <db:engine name="pas" url="postgres://localhost/pas" />
        <db:session name="pas.plugins.sqlalchemy" engine="pas" />
        
        Install the plugin using the included GenericSetup-profile. Note that
        tables will created automatically on installation.
        
        You can reinstall anytime to create non-existing tables. Note that
        tables are preserved on uninstallation.
        
        Memberdata
        ----------
        
        The users table has an extensive number of metadata fields; it's on
        the to-do to figure out a nice way to make this pluggable.
        
        Credits
        -------
        
        Authors
        
        - Rocky Burt <rocky@serverzen.com> of ServerZen Software
        
        - Nate Aune <natea@jazkarta.com> of Jazkarta
        
        - Stefan Eletzhofer <stefan.eletzhofer@inquant.de> of InQuant
        
        - Malthe Borch <mborch@gmail.com>
        
        Contributors
        
        - Ruda Porto Filgueiras <rudazz@gmail.com>
        
        - Daniel Nouri <daniel.nouri@gmail.com>
        
        - Dorneles Treméa <deo@jarn.com> of Jarn
        
        - Wichert Akkerman <wichert@wiggy.net> of Simplon
        
        - Riccardo Lemmi <riccardo@reflab.it> of Reflab Srl
        
        Sponsors
        
        - Thanks to ChemIndustry.com Inc. for financing the development of
        SQLPASPlugin
        
        - Thanks to Statens Byggeforskninginstitut (http://www.sbi.dk) for sponsoring
        the caching support.
        
        - Thanks to Gis & Web S.r.l. (http://www.gisweb.it) for sponsoring
        the groups management support.
        
        License
        -------
        
        GNU GPL v2 (see LICENCE.txt for details)
        
        
        Changelog
        =========
        
        0.2 (released 2009/7/17)
        ------------------------
        
        - Changed the 'listed' and 'ext_editor' column type to 'Integer' match
        the Plone model. [seletz]
        
        0.1 (released 2009/7/17)
        ------------------------
        
        - Initial public release.
        
Keywords: web pas plone
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
