├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── examples ├── acl.py ├── context.py └── proxy.py ├── rbac ├── __init__.py ├── acl.py ├── context.py └── proxy.py ├── setup.py ├── tests ├── conftest.py ├── test_acl.py ├── test_context.py ├── test_ordering.py └── test_proxy.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/simple-rbac/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/simple-rbac/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/simple-rbac/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/simple-rbac/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/simple-rbac/HEAD/README.rst -------------------------------------------------------------------------------- /examples/acl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/simple-rbac/HEAD/examples/acl.py -------------------------------------------------------------------------------- /examples/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/simple-rbac/HEAD/examples/context.py -------------------------------------------------------------------------------- /examples/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/simple-rbac/HEAD/examples/proxy.py -------------------------------------------------------------------------------- /rbac/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/simple-rbac/HEAD/rbac/__init__.py -------------------------------------------------------------------------------- /rbac/acl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/simple-rbac/HEAD/rbac/acl.py -------------------------------------------------------------------------------- /rbac/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/simple-rbac/HEAD/rbac/context.py -------------------------------------------------------------------------------- /rbac/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/simple-rbac/HEAD/rbac/proxy.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/simple-rbac/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_acl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/simple-rbac/HEAD/tests/test_acl.py -------------------------------------------------------------------------------- /tests/test_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/simple-rbac/HEAD/tests/test_context.py -------------------------------------------------------------------------------- /tests/test_ordering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/simple-rbac/HEAD/tests/test_ordering.py -------------------------------------------------------------------------------- /tests/test_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/simple-rbac/HEAD/tests/test_proxy.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyseek/simple-rbac/HEAD/tox.ini --------------------------------------------------------------------------------