├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── rest_framework_sav ├── __init__.py └── views.py ├── runtests.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── models.py ├── settings.py ├── test_views.py ├── urls.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesRitchie/django-rest-framework-sav/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesRitchie/django-rest-framework-sav/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesRitchie/django-rest-framework-sav/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesRitchie/django-rest-framework-sav/HEAD/README.md -------------------------------------------------------------------------------- /rest_framework_sav/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesRitchie/django-rest-framework-sav/HEAD/rest_framework_sav/__init__.py -------------------------------------------------------------------------------- /rest_framework_sav/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesRitchie/django-rest-framework-sav/HEAD/rest_framework_sav/views.py -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesRitchie/django-rest-framework-sav/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesRitchie/django-rest-framework-sav/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- 1 | """Blank file required to run tests on Django 1.4.""" 2 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesRitchie/django-rest-framework-sav/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesRitchie/django-rest-framework-sav/HEAD/tests/test_views.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesRitchie/django-rest-framework-sav/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tests/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesRitchie/django-rest-framework-sav/HEAD/tests/views.py --------------------------------------------------------------------------------