├── .gitignore ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── django_resto ├── __init__.py ├── http_server.py ├── models.py ├── settings.py ├── storage.py ├── test_get_setting.py ├── test_http_server.py ├── test_regression.py ├── test_settings.py ├── test_storage.py └── tests.py ├── docs ├── Makefile ├── conf.py └── index.rst ├── setup.cfg ├── setup.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/django-resto/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/django-resto/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/django-resto/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/django-resto/HEAD/README.rst -------------------------------------------------------------------------------- /django_resto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_resto/http_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/django-resto/HEAD/django_resto/http_server.py -------------------------------------------------------------------------------- /django_resto/models.py: -------------------------------------------------------------------------------- 1 | # This file is only required for test discovery in Django < 1.6. 2 | -------------------------------------------------------------------------------- /django_resto/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/django-resto/HEAD/django_resto/settings.py -------------------------------------------------------------------------------- /django_resto/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/django-resto/HEAD/django_resto/storage.py -------------------------------------------------------------------------------- /django_resto/test_get_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/django-resto/HEAD/django_resto/test_get_setting.py -------------------------------------------------------------------------------- /django_resto/test_http_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/django-resto/HEAD/django_resto/test_http_server.py -------------------------------------------------------------------------------- /django_resto/test_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/django-resto/HEAD/django_resto/test_regression.py -------------------------------------------------------------------------------- /django_resto/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/django-resto/HEAD/django_resto/test_settings.py -------------------------------------------------------------------------------- /django_resto/test_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/django-resto/HEAD/django_resto/test_storage.py -------------------------------------------------------------------------------- /django_resto/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/django-resto/HEAD/django_resto/tests.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/django-resto/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/django-resto/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- 1 | ../README.rst -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/django-resto/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaugustin/django-resto/HEAD/tox.ini --------------------------------------------------------------------------------