Skip to content
This repository has been archived by the owner on Nov 1, 2022. It is now read-only.

Commit

Permalink
renamed prodicus -> tasdikrahman
Browse files Browse the repository at this point in the history
  • Loading branch information
tasdikrahman committed Jul 1, 2017
1 parent aa1a06a commit c3580f5
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions CONTRIBUTING.rst
Expand Up @@ -15,7 +15,7 @@ Types of Contributions
Report Bugs
~~~~~~~~~~~

Report bugs at https://github.com/prodicus/rbac/issues.
Report bugs at https://github.com/tasdikrahman/rbac/issues.

If you are reporting a bug, please include:

Expand Down Expand Up @@ -45,7 +45,7 @@ articles, and such.
Submit Feedback
~~~~~~~~~~~~~~~

The best way to send feedback is to file an issue at https://github.com/prodicus/rbac/issues.
The best way to send feedback is to file an issue at https://github.com/tasdikrahman/rbac/issues.

If you are proposing a feature:

Expand Down Expand Up @@ -100,7 +100,7 @@ Before you submit a pull request, check that it meets these guidelines:
2. If the pull request adds functionality, the docs should be updated. Put
your new functionality into a function with a docstring, and add the
feature to the list in README.rst.
3. Check https://travis-ci.org/prodicus/rbac/pull_requests
3. Check https://travis-ci.org/tasdikrahman/rbac/pull_requests
and make sure that the tests pass for all supported Python versions.

Tips
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -2,7 +2,7 @@
# @Author: Tasdik Rahman
# @GPLv3 License
# @http://tasdikrahman.me
# @https://github.com/prodicus
# @https://github.com/tasdikrahman

clean:
-find . -name '*.pyc' -delete
Expand Down
4 changes: 2 additions & 2 deletions README.md
@@ -1,6 +1,6 @@
# easyrbac

[![Build Status](https://travis-ci.org/prodicus/easyrbac.svg?branch=master)](https://travis-ci.org/prodicus/rbac)
[![Build Status](https://travis-ci.org/tasdikrahman/easyrbac.svg?branch=master)](https://travis-ci.org/tasdikrahman/rbac)

Role based Access Control implementation using the standard library

Expand Down Expand Up @@ -81,7 +81,7 @@ $ py.test

## Issues

You can submit the issues on the issue tracker [here](https://github.com/prodicus/rbac/issues)
You can submit the issues on the issue tracker [here](https://github.com/tasdikrahman/rbac/issues)

## Literature material

Expand Down
2 changes: 1 addition & 1 deletion easyrbac/__init__.py
Expand Up @@ -2,7 +2,7 @@
# @Author: Tasdik Rahman
# @GPLv3 License
# @http://tasdikrahman.me
# @https://github.com/prodicus
# @https://github.com/tasdikrahman

from .acl import AccessControlList
from .model import User, Role
Expand Down
2 changes: 1 addition & 1 deletion easyrbac/acl.py
Expand Up @@ -2,7 +2,7 @@
# @Author: Tasdik Rahman
# @GPLv3 License
# @http://tasdikrahman.me
# @https://github.com/prodicus
# @https://github.com/tasdikrahman

"""
Role Based Access Control:
Expand Down
2 changes: 1 addition & 1 deletion easyrbac/model.py
Expand Up @@ -2,7 +2,7 @@
# @Author: Tasdik Rahman
# @GPLv3 License
# @http://tasdikrahman.me
# @https://github.com/prodicus
# @https://github.com/tasdikrahman


class Role(object):
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -3,7 +3,7 @@
# @Author: Tasdik Rahman
# @GPLv3 License
# @http://tasdikrahman.me
# @https://github.com/prodicus
# @https://github.com/tasdikrahman

from setuptools import setup, find_packages
from codecs import open
Expand All @@ -22,8 +22,8 @@
version=__version__,
description='easyrbac: Role Based Access Control for humans',
long_description=long_description,
url='https://github.com/prodicus/easyrbac',
download_url='https://github.com/prodicus/easyrbac/tarball/' + __version__,
url='https://github.com/tasdikrahman/easyrbac',
download_url='https://github.com/tasdikrahman/easyrbac/tarball/' + __version__,
license='GPLv3',
classifiers=[
'Development Status :: 3 - Alpha',
Expand Down
2 changes: 1 addition & 1 deletion tests/__init__.py
Expand Up @@ -2,4 +2,4 @@
# @Author: Tasdik Rahman
# @GPLv3 License
# @http://tasdikrahman.me
# @https://github.com/prodicus
# @https://github.com/tasdikrahman
2 changes: 1 addition & 1 deletion tests/test_permissions.py
Expand Up @@ -2,7 +2,7 @@
# @Author: Tasdik Rahman
# @GPLv3 License
# @http://tasdikrahman.me
# @https://github.com/prodicus
# @https://github.com/tasdikrahman

from easyrbac import AccessControlList, User, Role

Expand Down
2 changes: 1 addition & 1 deletion tests/test_role_assignment_deletion.py
Expand Up @@ -2,7 +2,7 @@
# @Author: Tasdik Rahman
# @GPLv3 License
# @http://tasdikrahman.me
# @https://github.com/prodicus
# @https://github.com/tasdikrahman

"""Testing assignment and deletion of a Role to User
"""
Expand Down

0 comments on commit c3580f5

Please sign in to comment.