├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── conftest.py ├── docs ├── Makefile ├── _static │ └── .keep ├── authors.rst ├── conf.py ├── contributing.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat └── usage.rst ├── requirements.dev.txt ├── requirements.test.txt ├── requirements.txt ├── rest_framework_json_api ├── __init__.py ├── encoders.py ├── parsers.py ├── renderers.py └── utils.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── models.py ├── namespace_urls.py ├── serializers.py ├── test_delete.py ├── test_detail.py ├── test_errors.py ├── test_links.py ├── test_list.py ├── test_nested.py ├── test_parsing.py ├── test_utils.py ├── urls.py ├── utils.py └── views.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/README.rst -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/conftest.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/.keep: -------------------------------------------------------------------------------- 1 | # Placeholder for future static doc assets 2 | -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /requirements.dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/requirements.dev.txt -------------------------------------------------------------------------------- /requirements.test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/requirements.test.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/requirements.txt -------------------------------------------------------------------------------- /rest_framework_json_api/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.1.1" 2 | -------------------------------------------------------------------------------- /rest_framework_json_api/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/rest_framework_json_api/encoders.py -------------------------------------------------------------------------------- /rest_framework_json_api/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/rest_framework_json_api/parsers.py -------------------------------------------------------------------------------- /rest_framework_json_api/renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/rest_framework_json_api/renderers.py -------------------------------------------------------------------------------- /rest_framework_json_api/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/rest_framework_json_api/utils.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | 4 | [flake8] 5 | exclude = ./.tox/ 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/namespace_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/tests/namespace_urls.py -------------------------------------------------------------------------------- /tests/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/tests/serializers.py -------------------------------------------------------------------------------- /tests/test_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/tests/test_delete.py -------------------------------------------------------------------------------- /tests/test_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/tests/test_detail.py -------------------------------------------------------------------------------- /tests/test_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/tests/test_errors.py -------------------------------------------------------------------------------- /tests/test_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/tests/test_links.py -------------------------------------------------------------------------------- /tests/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/tests/test_list.py -------------------------------------------------------------------------------- /tests/test_nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/tests/test_nested.py -------------------------------------------------------------------------------- /tests/test_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/tests/test_parsing.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tests/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/tests/views.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-brown/drf-json-api/HEAD/tox.ini --------------------------------------------------------------------------------