├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── djpjax.py ├── setup.py ├── test-requirements.txt └── tests.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.egg-info 2 | *.pyc 3 | .coverage 4 | dist/ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobian/django-pjax/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobian/django-pjax/HEAD/README.rst -------------------------------------------------------------------------------- /djpjax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobian/django-pjax/HEAD/djpjax.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobian/django-pjax/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- 1 | django >= 1.3 2 | nose -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobian/django-pjax/HEAD/tests.py --------------------------------------------------------------------------------