├── .gitignore ├── AUTHORS ├── LICENSE ├── MANIFEST.in ├── README.rst ├── cleanpyc ├── docs ├── changelog.txt └── notes.txt ├── firebird ├── __init__.py ├── base.py ├── client.py ├── compiler.py ├── creation.py ├── expressions.py ├── features.py ├── introspection.py ├── operations.py ├── schema.py ├── validation.py └── version.py ├── requirements.txt ├── setup.cfg ├── setup.py └── tests └── test_main ├── datatypes ├── __init__.py ├── models.py └── tests.py ├── dates ├── __init__.py ├── models.py └── tests.py ├── datetimes ├── __init__.py ├── models.py └── tests.py ├── expressions ├── __init__.py ├── models.py ├── test_queryset_values.py └── tests.py ├── inspectdb ├── __init__.py ├── models.py └── tests.py ├── introspection ├── __init__.py ├── models.py └── tests.py ├── lookup ├── __init__.py ├── models.py ├── test_decimalfield.py ├── test_lookups.py ├── test_timefield.py └── tests.py ├── manage.py ├── many_to_one ├── __init__.py ├── models.py └── tests.py ├── model_fields ├── 4x8.png ├── 8x4.png ├── __init__.py ├── models.py ├── test_autofield.py ├── test_binaryfield.py ├── test_booleanfield.py ├── test_charfield.py ├── test_datetimefield.py ├── test_decimalfield.py ├── test_durationfield.py ├── test_field_flags.py ├── test_filefield.py ├── test_filepathfield.py ├── test_floatfield.py ├── test_foreignkey.py ├── test_generatedfield.py ├── test_genericipaddressfield.py ├── test_imagefield.py ├── test_integerfield.py ├── test_jsonfield.py ├── test_manytomanyfield.py ├── test_promises.py ├── test_slugfield.py ├── test_textfield.py ├── test_uuid.py └── tests.py ├── schema ├── __init__.py ├── fields.py ├── models.py ├── test_logging.py └── tests.py ├── test_base ├── __init__.py ├── models.py ├── tests.py └── views.py ├── test_main ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py └── transactions ├── __init__.py ├── models.py └── tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/README.rst -------------------------------------------------------------------------------- /cleanpyc: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | find . -type f -name "*.pyc" -exec rm {} \; 3 | -------------------------------------------------------------------------------- /docs/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/docs/changelog.txt -------------------------------------------------------------------------------- /docs/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/docs/notes.txt -------------------------------------------------------------------------------- /firebird/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/firebird/__init__.py -------------------------------------------------------------------------------- /firebird/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/firebird/base.py -------------------------------------------------------------------------------- /firebird/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/firebird/client.py -------------------------------------------------------------------------------- /firebird/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/firebird/compiler.py -------------------------------------------------------------------------------- /firebird/creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/firebird/creation.py -------------------------------------------------------------------------------- /firebird/expressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/firebird/expressions.py -------------------------------------------------------------------------------- /firebird/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/firebird/features.py -------------------------------------------------------------------------------- /firebird/introspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/firebird/introspection.py -------------------------------------------------------------------------------- /firebird/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/firebird/operations.py -------------------------------------------------------------------------------- /firebird/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/firebird/schema.py -------------------------------------------------------------------------------- /firebird/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/firebird/validation.py -------------------------------------------------------------------------------- /firebird/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/firebird/version.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_main/datatypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_main/datatypes/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/datatypes/models.py -------------------------------------------------------------------------------- /tests/test_main/datatypes/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/datatypes/tests.py -------------------------------------------------------------------------------- /tests/test_main/dates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_main/dates/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/dates/models.py -------------------------------------------------------------------------------- /tests/test_main/dates/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/dates/tests.py -------------------------------------------------------------------------------- /tests/test_main/datetimes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_main/datetimes/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/datetimes/models.py -------------------------------------------------------------------------------- /tests/test_main/datetimes/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/datetimes/tests.py -------------------------------------------------------------------------------- /tests/test_main/expressions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_main/expressions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/expressions/models.py -------------------------------------------------------------------------------- /tests/test_main/expressions/test_queryset_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/expressions/test_queryset_values.py -------------------------------------------------------------------------------- /tests/test_main/expressions/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/expressions/tests.py -------------------------------------------------------------------------------- /tests/test_main/inspectdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_main/inspectdb/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/inspectdb/models.py -------------------------------------------------------------------------------- /tests/test_main/inspectdb/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/inspectdb/tests.py -------------------------------------------------------------------------------- /tests/test_main/introspection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_main/introspection/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/introspection/models.py -------------------------------------------------------------------------------- /tests/test_main/introspection/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/introspection/tests.py -------------------------------------------------------------------------------- /tests/test_main/lookup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_main/lookup/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/lookup/models.py -------------------------------------------------------------------------------- /tests/test_main/lookup/test_decimalfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/lookup/test_decimalfield.py -------------------------------------------------------------------------------- /tests/test_main/lookup/test_lookups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/lookup/test_lookups.py -------------------------------------------------------------------------------- /tests/test_main/lookup/test_timefield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/lookup/test_timefield.py -------------------------------------------------------------------------------- /tests/test_main/lookup/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/lookup/tests.py -------------------------------------------------------------------------------- /tests/test_main/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/manage.py -------------------------------------------------------------------------------- /tests/test_main/many_to_one/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_main/many_to_one/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/many_to_one/models.py -------------------------------------------------------------------------------- /tests/test_main/many_to_one/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/many_to_one/tests.py -------------------------------------------------------------------------------- /tests/test_main/model_fields/4x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/model_fields/4x8.png -------------------------------------------------------------------------------- /tests/test_main/model_fields/8x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/model_fields/8x4.png -------------------------------------------------------------------------------- /tests/test_main/model_fields/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_main/model_fields/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/model_fields/models.py -------------------------------------------------------------------------------- /tests/test_main/model_fields/test_autofield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/model_fields/test_autofield.py -------------------------------------------------------------------------------- /tests/test_main/model_fields/test_binaryfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/model_fields/test_binaryfield.py -------------------------------------------------------------------------------- /tests/test_main/model_fields/test_booleanfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/model_fields/test_booleanfield.py -------------------------------------------------------------------------------- /tests/test_main/model_fields/test_charfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/model_fields/test_charfield.py -------------------------------------------------------------------------------- /tests/test_main/model_fields/test_datetimefield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/model_fields/test_datetimefield.py -------------------------------------------------------------------------------- /tests/test_main/model_fields/test_decimalfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/model_fields/test_decimalfield.py -------------------------------------------------------------------------------- /tests/test_main/model_fields/test_durationfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/model_fields/test_durationfield.py -------------------------------------------------------------------------------- /tests/test_main/model_fields/test_field_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/model_fields/test_field_flags.py -------------------------------------------------------------------------------- /tests/test_main/model_fields/test_filefield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/model_fields/test_filefield.py -------------------------------------------------------------------------------- /tests/test_main/model_fields/test_filepathfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/model_fields/test_filepathfield.py -------------------------------------------------------------------------------- /tests/test_main/model_fields/test_floatfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/model_fields/test_floatfield.py -------------------------------------------------------------------------------- /tests/test_main/model_fields/test_foreignkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/model_fields/test_foreignkey.py -------------------------------------------------------------------------------- /tests/test_main/model_fields/test_generatedfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/model_fields/test_generatedfield.py -------------------------------------------------------------------------------- /tests/test_main/model_fields/test_genericipaddressfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/model_fields/test_genericipaddressfield.py -------------------------------------------------------------------------------- /tests/test_main/model_fields/test_imagefield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/model_fields/test_imagefield.py -------------------------------------------------------------------------------- /tests/test_main/model_fields/test_integerfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/model_fields/test_integerfield.py -------------------------------------------------------------------------------- /tests/test_main/model_fields/test_jsonfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/model_fields/test_jsonfield.py -------------------------------------------------------------------------------- /tests/test_main/model_fields/test_manytomanyfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/model_fields/test_manytomanyfield.py -------------------------------------------------------------------------------- /tests/test_main/model_fields/test_promises.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/model_fields/test_promises.py -------------------------------------------------------------------------------- /tests/test_main/model_fields/test_slugfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/model_fields/test_slugfield.py -------------------------------------------------------------------------------- /tests/test_main/model_fields/test_textfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/model_fields/test_textfield.py -------------------------------------------------------------------------------- /tests/test_main/model_fields/test_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/model_fields/test_uuid.py -------------------------------------------------------------------------------- /tests/test_main/model_fields/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/model_fields/tests.py -------------------------------------------------------------------------------- /tests/test_main/schema/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_main/schema/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/schema/fields.py -------------------------------------------------------------------------------- /tests/test_main/schema/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/schema/models.py -------------------------------------------------------------------------------- /tests/test_main/schema/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/schema/test_logging.py -------------------------------------------------------------------------------- /tests/test_main/schema/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/schema/tests.py -------------------------------------------------------------------------------- /tests/test_main/test_base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_main/test_base/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/test_base/models.py -------------------------------------------------------------------------------- /tests/test_main/test_base/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/test_base/tests.py -------------------------------------------------------------------------------- /tests/test_main/test_base/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /tests/test_main/test_main/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_main/test_main/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/test_main/settings.py -------------------------------------------------------------------------------- /tests/test_main/test_main/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/test_main/urls.py -------------------------------------------------------------------------------- /tests/test_main/test_main/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/test_main/wsgi.py -------------------------------------------------------------------------------- /tests/test_main/transactions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_main/transactions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/transactions/models.py -------------------------------------------------------------------------------- /tests/test_main/transactions/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxirobaina/django-firebird/HEAD/tests/test_main/transactions/tests.py --------------------------------------------------------------------------------