├── AUTHORS ├── CHANGELOG.textile ├── MANIFEST.in ├── README.rst ├── __pkginfo__.py ├── django_redis_engine ├── __init__.py ├── base.py ├── client.py ├── compiler.py ├── creation.py ├── index_utils.py ├── redis_entity.py ├── redis_transaction.py └── serializer.py ├── normalize_whitespace ├── setup.py └── testproject ├── __init__.py ├── dbindexes.py ├── manage.py ├── settings.py ├── templates ├── 404.html ├── 500.html ├── aproposito.html ├── base.html ├── come_aiutare.html ├── home.html ├── login.html ├── menu.html ├── pagination.html └── registration │ └── login.html ├── testapp ├── __init__.py ├── dbindexes.py ├── forms.py ├── models.py ├── redis_settings.py ├── templates │ └── testapp │ │ ├── .html │ │ ├── add_answer.html │ │ ├── add_post.html │ │ ├── forms │ │ ├── AnswerForm.html │ │ └── MyForm.html │ │ └── posts.html ├── tests.py ├── urls.py └── views.py └── urls.py /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/CHANGELOG.textile -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/README.rst -------------------------------------------------------------------------------- /__pkginfo__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/__pkginfo__.py -------------------------------------------------------------------------------- /django_redis_engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/django_redis_engine/__init__.py -------------------------------------------------------------------------------- /django_redis_engine/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/django_redis_engine/base.py -------------------------------------------------------------------------------- /django_redis_engine/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/django_redis_engine/client.py -------------------------------------------------------------------------------- /django_redis_engine/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/django_redis_engine/compiler.py -------------------------------------------------------------------------------- /django_redis_engine/creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/django_redis_engine/creation.py -------------------------------------------------------------------------------- /django_redis_engine/index_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/django_redis_engine/index_utils.py -------------------------------------------------------------------------------- /django_redis_engine/redis_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/django_redis_engine/redis_entity.py -------------------------------------------------------------------------------- /django_redis_engine/redis_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/django_redis_engine/redis_transaction.py -------------------------------------------------------------------------------- /django_redis_engine/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/django_redis_engine/serializer.py -------------------------------------------------------------------------------- /normalize_whitespace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/normalize_whitespace -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/setup.py -------------------------------------------------------------------------------- /testproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testproject/dbindexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/testproject/dbindexes.py -------------------------------------------------------------------------------- /testproject/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/testproject/manage.py -------------------------------------------------------------------------------- /testproject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/testproject/settings.py -------------------------------------------------------------------------------- /testproject/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/testproject/templates/404.html -------------------------------------------------------------------------------- /testproject/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/testproject/templates/500.html -------------------------------------------------------------------------------- /testproject/templates/aproposito.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/testproject/templates/aproposito.html -------------------------------------------------------------------------------- /testproject/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/testproject/templates/base.html -------------------------------------------------------------------------------- /testproject/templates/come_aiutare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/testproject/templates/come_aiutare.html -------------------------------------------------------------------------------- /testproject/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/testproject/templates/home.html -------------------------------------------------------------------------------- /testproject/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/testproject/templates/login.html -------------------------------------------------------------------------------- /testproject/templates/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/testproject/templates/menu.html -------------------------------------------------------------------------------- /testproject/templates/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/testproject/templates/pagination.html -------------------------------------------------------------------------------- /testproject/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/testproject/templates/registration/login.html -------------------------------------------------------------------------------- /testproject/testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testproject/testapp/dbindexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/testproject/testapp/dbindexes.py -------------------------------------------------------------------------------- /testproject/testapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/testproject/testapp/forms.py -------------------------------------------------------------------------------- /testproject/testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/testproject/testapp/models.py -------------------------------------------------------------------------------- /testproject/testapp/redis_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/testproject/testapp/redis_settings.py -------------------------------------------------------------------------------- /testproject/testapp/templates/testapp/.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/testproject/testapp/templates/testapp/.html -------------------------------------------------------------------------------- /testproject/testapp/templates/testapp/add_answer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/testproject/testapp/templates/testapp/add_answer.html -------------------------------------------------------------------------------- /testproject/testapp/templates/testapp/add_post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/testproject/testapp/templates/testapp/add_post.html -------------------------------------------------------------------------------- /testproject/testapp/templates/testapp/forms/AnswerForm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/testproject/testapp/templates/testapp/forms/AnswerForm.html -------------------------------------------------------------------------------- /testproject/testapp/templates/testapp/forms/MyForm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/testproject/testapp/templates/testapp/forms/MyForm.html -------------------------------------------------------------------------------- /testproject/testapp/templates/testapp/posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/testproject/testapp/templates/testapp/posts.html -------------------------------------------------------------------------------- /testproject/testapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/testproject/testapp/tests.py -------------------------------------------------------------------------------- /testproject/testapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/testproject/testapp/urls.py -------------------------------------------------------------------------------- /testproject/testapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/testproject/testapp/views.py -------------------------------------------------------------------------------- /testproject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MirkoRossini/django-redis-engine/HEAD/testproject/urls.py --------------------------------------------------------------------------------