├── .gitignore ├── .travis.yml ├── CHANGELOG.rst ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── django_ripozo ├── __init__.py ├── admin.py ├── dispatcher.py ├── easy_resources.py ├── exceptions.py ├── manager.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py └── views.py ├── django_ripozo_tests ├── __init__.py ├── helpers │ ├── __init__.py │ ├── common.py │ └── django_settings.py ├── integration │ ├── __init__.py │ ├── basic.py │ ├── dispatcher.py │ ├── easy_resources.py │ └── method_router.py └── unit │ ├── __init__.py │ ├── dispatcher.py │ ├── manager.py │ ├── method_router.py │ └── onetomanymanager.py ├── docs ├── Makefile ├── make.bat └── source │ ├── API.rst │ ├── conf.py │ ├── index.rst │ └── tutorial │ └── setup.rst ├── examples ├── django_example_requests.py └── todolist │ ├── manage.py │ ├── todoapp │ ├── __init__.py │ ├── admin.py │ ├── managers.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── resources.py │ ├── tests.py │ ├── urls.py │ └── views.py │ └── todolist │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py ├── setup.py ├── test_project ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── testapp ├── __init__.py ├── admin.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── resources.py ├── tests.py ├── urls.py └── views.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/README.rst -------------------------------------------------------------------------------- /django_ripozo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/django_ripozo/__init__.py -------------------------------------------------------------------------------- /django_ripozo/admin.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /django_ripozo/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/django_ripozo/dispatcher.py -------------------------------------------------------------------------------- /django_ripozo/easy_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/django_ripozo/easy_resources.py -------------------------------------------------------------------------------- /django_ripozo/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/django_ripozo/exceptions.py -------------------------------------------------------------------------------- /django_ripozo/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/django_ripozo/manager.py -------------------------------------------------------------------------------- /django_ripozo/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_ripozo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/django_ripozo/models.py -------------------------------------------------------------------------------- /django_ripozo/tests.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /django_ripozo/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_ripozo_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/django_ripozo_tests/__init__.py -------------------------------------------------------------------------------- /django_ripozo_tests/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/django_ripozo_tests/helpers/__init__.py -------------------------------------------------------------------------------- /django_ripozo_tests/helpers/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/django_ripozo_tests/helpers/common.py -------------------------------------------------------------------------------- /django_ripozo_tests/helpers/django_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/django_ripozo_tests/helpers/django_settings.py -------------------------------------------------------------------------------- /django_ripozo_tests/integration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/django_ripozo_tests/integration/__init__.py -------------------------------------------------------------------------------- /django_ripozo_tests/integration/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/django_ripozo_tests/integration/basic.py -------------------------------------------------------------------------------- /django_ripozo_tests/integration/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/django_ripozo_tests/integration/dispatcher.py -------------------------------------------------------------------------------- /django_ripozo_tests/integration/easy_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/django_ripozo_tests/integration/easy_resources.py -------------------------------------------------------------------------------- /django_ripozo_tests/integration/method_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/django_ripozo_tests/integration/method_router.py -------------------------------------------------------------------------------- /django_ripozo_tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/django_ripozo_tests/unit/__init__.py -------------------------------------------------------------------------------- /django_ripozo_tests/unit/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/django_ripozo_tests/unit/dispatcher.py -------------------------------------------------------------------------------- /django_ripozo_tests/unit/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/django_ripozo_tests/unit/manager.py -------------------------------------------------------------------------------- /django_ripozo_tests/unit/method_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/django_ripozo_tests/unit/method_router.py -------------------------------------------------------------------------------- /django_ripozo_tests/unit/onetomanymanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/django_ripozo_tests/unit/onetomanymanager.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/API.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/docs/source/API.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/tutorial/setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/docs/source/tutorial/setup.rst -------------------------------------------------------------------------------- /examples/django_example_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/examples/django_example_requests.py -------------------------------------------------------------------------------- /examples/todolist/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/examples/todolist/manage.py -------------------------------------------------------------------------------- /examples/todolist/todoapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/todolist/todoapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/examples/todolist/todoapp/admin.py -------------------------------------------------------------------------------- /examples/todolist/todoapp/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/examples/todolist/todoapp/managers.py -------------------------------------------------------------------------------- /examples/todolist/todoapp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/examples/todolist/todoapp/migrations/0001_initial.py -------------------------------------------------------------------------------- /examples/todolist/todoapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/todolist/todoapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/examples/todolist/todoapp/models.py -------------------------------------------------------------------------------- /examples/todolist/todoapp/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/examples/todolist/todoapp/resources.py -------------------------------------------------------------------------------- /examples/todolist/todoapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/examples/todolist/todoapp/tests.py -------------------------------------------------------------------------------- /examples/todolist/todoapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/examples/todolist/todoapp/urls.py -------------------------------------------------------------------------------- /examples/todolist/todoapp/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /examples/todolist/todolist/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/todolist/todolist/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/examples/todolist/todolist/settings.py -------------------------------------------------------------------------------- /examples/todolist/todolist/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/examples/todolist/todolist/urls.py -------------------------------------------------------------------------------- /examples/todolist/todolist/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/examples/todolist/todolist/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/manage.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/setup.py -------------------------------------------------------------------------------- /test_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/test_project/settings.py -------------------------------------------------------------------------------- /test_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/test_project/urls.py -------------------------------------------------------------------------------- /test_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/test_project/wsgi.py -------------------------------------------------------------------------------- /testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/testapp/admin.py -------------------------------------------------------------------------------- /testapp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/testapp/migrations/0001_initial.py -------------------------------------------------------------------------------- /testapp/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/testapp/migrations/__init__.py -------------------------------------------------------------------------------- /testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/testapp/models.py -------------------------------------------------------------------------------- /testapp/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/testapp/resources.py -------------------------------------------------------------------------------- /testapp/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/testapp/urls.py -------------------------------------------------------------------------------- /testapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/testapp/views.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vertical-knowledge/django-ripozo/HEAD/tox.ini --------------------------------------------------------------------------------