├── LICENSE ├── MANIFEST.in ├── README.rst ├── example_project ├── __init__.py ├── dev.db ├── manage.py ├── settings.py ├── templates │ └── flatpages │ │ └── default.html └── urls.py ├── setup.py └── speedtracer ├── __init__.py └── middleware.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdha/django-speedtracer/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdha/django-speedtracer/HEAD/README.rst -------------------------------------------------------------------------------- /example_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_project/dev.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdha/django-speedtracer/HEAD/example_project/dev.db -------------------------------------------------------------------------------- /example_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdha/django-speedtracer/HEAD/example_project/manage.py -------------------------------------------------------------------------------- /example_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdha/django-speedtracer/HEAD/example_project/settings.py -------------------------------------------------------------------------------- /example_project/templates/flatpages/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdha/django-speedtracer/HEAD/example_project/templates/flatpages/default.html -------------------------------------------------------------------------------- /example_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdha/django-speedtracer/HEAD/example_project/urls.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdha/django-speedtracer/HEAD/setup.py -------------------------------------------------------------------------------- /speedtracer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /speedtracer/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdha/django-speedtracer/HEAD/speedtracer/middleware.py --------------------------------------------------------------------------------