Metadata-Version: 1.0
Name: SchevoPolicy
Version: 1.0a1
Summary: Context-sensitive security policy enforcement for Schevo databases
Home-page: http://schevo.org/wiki/Schevo
Author: Orbtech, L.L.C. and contributors
Author-email: schevo@googlegroups.com
License: LGPL
Description: 
        SchevoPolicy provides security policy enforcement for Schevo
        databases.
        
        * Policies are separate from the database itself.  More than one
        policy may be enforced for a given database.
        
        * Generic functions are used to give a wide array of flexibility
        in defining policies, while maintaining readability.
        
        * The API used by client code is the same as that of the database
        itself.  For example, accessing the list of extent names
        directly and through a security policy that allows it::
        
        >>> db.extent_names()
        ['Bar', 'Foo']
        
        >>> policy = SecurityPolicy()
        >>> context = dict(username='jdoe')
        >>> dbp = policy(context)
        >>> dbp.extent_names()
        ['Bar', 'Foo']
        
        You can also get the `latest development version
        <http://getschevo.org/hg/repos.cgi/schevopolicy-dev/archive/tip.tar.gz#egg=SchevoPolicy-dev>`__.
        
Keywords: database dbms
Platform: UNIX
Platform: Windows
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Database :: Database Engines/Servers
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
