├── .gitignore ├── MANIFEST.in ├── README.rst ├── aggregate ├── __init__.py ├── client.py └── server.py ├── doc └── screenshot1.png ├── profiler ├── __init__.py ├── instrument.py ├── middleware.py ├── models.py ├── static │ └── profiler │ │ ├── bootstrap.css │ │ ├── jquery-1.7.2.min.js │ │ ├── jquery.tablesorter.min.js │ │ ├── profiler.css │ │ └── profiler.js ├── templates │ └── profiler │ │ ├── base.html │ │ ├── by_view.html │ │ ├── code.html │ │ ├── index.html │ │ └── reset.html ├── tests.py ├── urls.py └── views.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InviteBox/django-live-profiler/HEAD/.gitignore -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InviteBox/django-live-profiler/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InviteBox/django-live-profiler/HEAD/README.rst -------------------------------------------------------------------------------- /aggregate/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /aggregate/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InviteBox/django-live-profiler/HEAD/aggregate/client.py -------------------------------------------------------------------------------- /aggregate/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InviteBox/django-live-profiler/HEAD/aggregate/server.py -------------------------------------------------------------------------------- /doc/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InviteBox/django-live-profiler/HEAD/doc/screenshot1.png -------------------------------------------------------------------------------- /profiler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InviteBox/django-live-profiler/HEAD/profiler/__init__.py -------------------------------------------------------------------------------- /profiler/instrument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InviteBox/django-live-profiler/HEAD/profiler/instrument.py -------------------------------------------------------------------------------- /profiler/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InviteBox/django-live-profiler/HEAD/profiler/middleware.py -------------------------------------------------------------------------------- /profiler/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InviteBox/django-live-profiler/HEAD/profiler/models.py -------------------------------------------------------------------------------- /profiler/static/profiler/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InviteBox/django-live-profiler/HEAD/profiler/static/profiler/bootstrap.css -------------------------------------------------------------------------------- /profiler/static/profiler/jquery-1.7.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InviteBox/django-live-profiler/HEAD/profiler/static/profiler/jquery-1.7.2.min.js -------------------------------------------------------------------------------- /profiler/static/profiler/jquery.tablesorter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InviteBox/django-live-profiler/HEAD/profiler/static/profiler/jquery.tablesorter.min.js -------------------------------------------------------------------------------- /profiler/static/profiler/profiler.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InviteBox/django-live-profiler/HEAD/profiler/static/profiler/profiler.css -------------------------------------------------------------------------------- /profiler/static/profiler/profiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InviteBox/django-live-profiler/HEAD/profiler/static/profiler/profiler.js -------------------------------------------------------------------------------- /profiler/templates/profiler/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InviteBox/django-live-profiler/HEAD/profiler/templates/profiler/base.html -------------------------------------------------------------------------------- /profiler/templates/profiler/by_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InviteBox/django-live-profiler/HEAD/profiler/templates/profiler/by_view.html -------------------------------------------------------------------------------- /profiler/templates/profiler/code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InviteBox/django-live-profiler/HEAD/profiler/templates/profiler/code.html -------------------------------------------------------------------------------- /profiler/templates/profiler/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InviteBox/django-live-profiler/HEAD/profiler/templates/profiler/index.html -------------------------------------------------------------------------------- /profiler/templates/profiler/reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InviteBox/django-live-profiler/HEAD/profiler/templates/profiler/reset.html -------------------------------------------------------------------------------- /profiler/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InviteBox/django-live-profiler/HEAD/profiler/tests.py -------------------------------------------------------------------------------- /profiler/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InviteBox/django-live-profiler/HEAD/profiler/urls.py -------------------------------------------------------------------------------- /profiler/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InviteBox/django-live-profiler/HEAD/profiler/views.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InviteBox/django-live-profiler/HEAD/setup.py --------------------------------------------------------------------------------