├── .gitignore ├── MANIFEST.in ├── README.md ├── UNLICENSE ├── django_postgres ├── __init__.py ├── bitstrings.py ├── citext.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── sync_pgviews.py ├── six.py └── view.py ├── doc ├── Makefile ├── bitstrings.rst ├── conf.py ├── index.rst └── views.rst ├── setup.py └── tests ├── test_project ├── Makefile ├── README.md ├── arraytest │ ├── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── bitstringtest │ ├── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── requirements.txt ├── test_project │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── viewtest │ ├── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py └── views ├── README.md ├── cleanup_viewtest.sh └── do_viewtest.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/.gitignore -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/UNLICENSE -------------------------------------------------------------------------------- /django_postgres/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/django_postgres/__init__.py -------------------------------------------------------------------------------- /django_postgres/bitstrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/django_postgres/bitstrings.py -------------------------------------------------------------------------------- /django_postgres/citext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/django_postgres/citext.py -------------------------------------------------------------------------------- /django_postgres/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_postgres/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_postgres/management/commands/sync_pgviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/django_postgres/management/commands/sync_pgviews.py -------------------------------------------------------------------------------- /django_postgres/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/django_postgres/six.py -------------------------------------------------------------------------------- /django_postgres/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/django_postgres/view.py -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/bitstrings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/doc/bitstrings.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/doc/views.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_project/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/tests/test_project/Makefile -------------------------------------------------------------------------------- /tests/test_project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/tests/test_project/README.md -------------------------------------------------------------------------------- /tests/test_project/arraytest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_project/arraytest/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/tests/test_project/arraytest/models.py -------------------------------------------------------------------------------- /tests/test_project/arraytest/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/tests/test_project/arraytest/tests.py -------------------------------------------------------------------------------- /tests/test_project/arraytest/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /tests/test_project/bitstringtest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_project/bitstringtest/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/tests/test_project/bitstringtest/models.py -------------------------------------------------------------------------------- /tests/test_project/bitstringtest/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/tests/test_project/bitstringtest/tests.py -------------------------------------------------------------------------------- /tests/test_project/bitstringtest/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /tests/test_project/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/tests/test_project/requirements.txt -------------------------------------------------------------------------------- /tests/test_project/test_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_project/test_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/tests/test_project/test_project/settings.py -------------------------------------------------------------------------------- /tests/test_project/test_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/tests/test_project/test_project/urls.py -------------------------------------------------------------------------------- /tests/test_project/test_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/tests/test_project/test_project/wsgi.py -------------------------------------------------------------------------------- /tests/test_project/viewtest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_project/viewtest/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/tests/test_project/viewtest/models.py -------------------------------------------------------------------------------- /tests/test_project/viewtest/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/tests/test_project/viewtest/tests.py -------------------------------------------------------------------------------- /tests/test_project/viewtest/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /tests/views/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/tests/views/README.md -------------------------------------------------------------------------------- /tests/views/cleanup_viewtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/tests/views/cleanup_viewtest.sh -------------------------------------------------------------------------------- /tests/views/do_viewtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharyvoase/django-postgres/HEAD/tests/views/do_viewtest.sh --------------------------------------------------------------------------------