├── .gitignore ├── MANIFEST.in ├── README.rst ├── djangosampler ├── __init__.py ├── admin.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto__add_field_sample_cre__add_field_query_cre__add_field_stack_cre.py │ ├── 0003_auto.py │ └── __init__.py ├── models.py ├── plugins │ ├── __init__.py │ ├── celery_task.py │ ├── mongo.py │ ├── request.py │ └── sql.py ├── sampler.py ├── static │ └── djangosampler │ │ └── sampler.css ├── templates │ └── djangosampler │ │ ├── base.html │ │ ├── queries.html │ │ └── query.html ├── test_plugins.py ├── test_sampler.py ├── tests.py ├── urls.py └── views.py ├── run_tests.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.egg-info 2 | build 3 | dist 4 | *.pyc 5 | *.swp 6 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colinhowe/djangosampler/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colinhowe/djangosampler/HEAD/README.rst -------------------------------------------------------------------------------- /djangosampler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colinhowe/djangosampler/HEAD/djangosampler/__init__.py -------------------------------------------------------------------------------- /djangosampler/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colinhowe/djangosampler/HEAD/djangosampler/admin.py -------------------------------------------------------------------------------- /djangosampler/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colinhowe/djangosampler/HEAD/djangosampler/migrations/0001_initial.py -------------------------------------------------------------------------------- /djangosampler/migrations/0002_auto__add_field_sample_cre__add_field_query_cre__add_field_stack_cre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colinhowe/djangosampler/HEAD/djangosampler/migrations/0002_auto__add_field_sample_cre__add_field_query_cre__add_field_stack_cre.py -------------------------------------------------------------------------------- /djangosampler/migrations/0003_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colinhowe/djangosampler/HEAD/djangosampler/migrations/0003_auto.py -------------------------------------------------------------------------------- /djangosampler/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosampler/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colinhowe/djangosampler/HEAD/djangosampler/models.py -------------------------------------------------------------------------------- /djangosampler/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colinhowe/djangosampler/HEAD/djangosampler/plugins/__init__.py -------------------------------------------------------------------------------- /djangosampler/plugins/celery_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colinhowe/djangosampler/HEAD/djangosampler/plugins/celery_task.py -------------------------------------------------------------------------------- /djangosampler/plugins/mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colinhowe/djangosampler/HEAD/djangosampler/plugins/mongo.py -------------------------------------------------------------------------------- /djangosampler/plugins/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colinhowe/djangosampler/HEAD/djangosampler/plugins/request.py -------------------------------------------------------------------------------- /djangosampler/plugins/sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colinhowe/djangosampler/HEAD/djangosampler/plugins/sql.py -------------------------------------------------------------------------------- /djangosampler/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colinhowe/djangosampler/HEAD/djangosampler/sampler.py -------------------------------------------------------------------------------- /djangosampler/static/djangosampler/sampler.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colinhowe/djangosampler/HEAD/djangosampler/static/djangosampler/sampler.css -------------------------------------------------------------------------------- /djangosampler/templates/djangosampler/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colinhowe/djangosampler/HEAD/djangosampler/templates/djangosampler/base.html -------------------------------------------------------------------------------- /djangosampler/templates/djangosampler/queries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colinhowe/djangosampler/HEAD/djangosampler/templates/djangosampler/queries.html -------------------------------------------------------------------------------- /djangosampler/templates/djangosampler/query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colinhowe/djangosampler/HEAD/djangosampler/templates/djangosampler/query.html -------------------------------------------------------------------------------- /djangosampler/test_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colinhowe/djangosampler/HEAD/djangosampler/test_plugins.py -------------------------------------------------------------------------------- /djangosampler/test_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colinhowe/djangosampler/HEAD/djangosampler/test_sampler.py -------------------------------------------------------------------------------- /djangosampler/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colinhowe/djangosampler/HEAD/djangosampler/tests.py -------------------------------------------------------------------------------- /djangosampler/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colinhowe/djangosampler/HEAD/djangosampler/urls.py -------------------------------------------------------------------------------- /djangosampler/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colinhowe/djangosampler/HEAD/djangosampler/views.py -------------------------------------------------------------------------------- /run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colinhowe/djangosampler/HEAD/run_tests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colinhowe/djangosampler/HEAD/setup.py --------------------------------------------------------------------------------