├── .gitignore ├── .travis.yml ├── CHANGES ├── CREDITS ├── README.md ├── requirements.txt ├── requirements ├── requirements-development.txt └── requirements-testing.txt ├── rest_framework_proxy ├── __init__.py ├── adapters.py ├── models.py ├── settings.py ├── utils.py └── views.py ├── runtests.py ├── setup.py ├── tests ├── __init__.py ├── utils_test.py └── views_tests.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eofs/django-rest-framework-proxy/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eofs/django-rest-framework-proxy/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eofs/django-rest-framework-proxy/HEAD/CHANGES -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eofs/django-rest-framework-proxy/HEAD/CREDITS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eofs/django-rest-framework-proxy/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eofs/django-rest-framework-proxy/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements/requirements-development.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eofs/django-rest-framework-proxy/HEAD/requirements/requirements-development.txt -------------------------------------------------------------------------------- /requirements/requirements-testing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eofs/django-rest-framework-proxy/HEAD/requirements/requirements-testing.txt -------------------------------------------------------------------------------- /rest_framework_proxy/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.6.0' 2 | -------------------------------------------------------------------------------- /rest_framework_proxy/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eofs/django-rest-framework-proxy/HEAD/rest_framework_proxy/adapters.py -------------------------------------------------------------------------------- /rest_framework_proxy/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_framework_proxy/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eofs/django-rest-framework-proxy/HEAD/rest_framework_proxy/settings.py -------------------------------------------------------------------------------- /rest_framework_proxy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eofs/django-rest-framework-proxy/HEAD/rest_framework_proxy/utils.py -------------------------------------------------------------------------------- /rest_framework_proxy/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eofs/django-rest-framework-proxy/HEAD/rest_framework_proxy/views.py -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eofs/django-rest-framework-proxy/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eofs/django-rest-framework-proxy/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eofs/django-rest-framework-proxy/HEAD/tests/utils_test.py -------------------------------------------------------------------------------- /tests/views_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eofs/django-rest-framework-proxy/HEAD/tests/views_tests.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eofs/django-rest-framework-proxy/HEAD/tox.ini --------------------------------------------------------------------------------