├── .gitignore ├── .testr.conf ├── .travis.yml ├── LICENSE ├── README.rst ├── TODO ├── announce.rst ├── docs ├── Makefile └── source │ ├── command_ref.rst │ ├── conf.py │ ├── faq.rst │ ├── history.rst │ ├── index.rst │ ├── quickstart.rst │ ├── screenshots │ ├── call_graph.png │ ├── file_contents.png │ ├── file_list.png │ ├── run_details.png │ ├── runs.png │ └── stats.png │ └── server.rst ├── requirements.txt ├── setup.cfg ├── setup.py ├── smiley ├── __init__.py ├── __main__.py ├── app.py ├── commands │ ├── __init__.py │ ├── delete.py │ ├── export.py │ ├── list.py │ ├── listen_cmd.py │ ├── monitor.py │ ├── record.py │ ├── replay.py │ ├── report.py │ ├── run.py │ ├── server.py │ ├── show.py │ ├── stats.py │ └── threads.py ├── db.py ├── db_linecache.py ├── jsonutil.py ├── listener.py ├── local.py ├── output.py ├── presentation │ ├── __init__.py │ ├── pagination.py │ ├── stats.py │ ├── syntax.py │ └── trace.py ├── processor.py ├── publisher.py ├── report │ ├── __init__.py │ ├── html.py │ ├── static │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.min.css │ │ │ ├── pygments.css │ │ │ ├── run.css │ │ │ └── stats.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery-1.10.1.js │ │ │ └── jquery-1.10.1.min.js │ └── templates │ │ ├── call_graph.html │ │ ├── file.html │ │ ├── files.html │ │ ├── index.html │ │ ├── layout.html │ │ ├── stats.html │ │ └── trace.html ├── schema.sql ├── stats.py ├── tests │ ├── __init__.py │ ├── presentation │ │ ├── __init__.py │ │ ├── test_pagination.py │ │ └── test_trace.py │ ├── test_db.py │ ├── test_db_linecache.py │ ├── test_jsonutil.py │ ├── test_listener.py │ ├── test_local.py │ ├── test_publisher.py │ ├── test_stats.py │ ├── test_tracer.py │ ├── test_util.py │ ├── test_uuidstack.py │ └── web │ │ ├── __init__.py │ │ ├── controllers │ │ └── __init__.py │ │ ├── test_functional.py │ │ ├── test_nav.py │ │ └── test_units.py ├── tracer.py ├── util.py ├── uuidstack.py └── web │ ├── __init__.py │ ├── app.py │ ├── config.py │ ├── controllers │ ├── __init__.py │ ├── delete.py │ ├── files.py │ ├── root.py │ ├── run_context.py │ ├── runs.py │ ├── session.py │ ├── stats.py │ └── threads.py │ ├── hooks.py │ ├── model │ └── __init__.py │ ├── nav.py │ ├── public │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── pygments.css │ │ ├── run.css │ │ └── stats.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── jquery-1.10.1.js │ │ └── jquery-1.10.1.min.js │ └── templates │ ├── about.html │ ├── error.html │ ├── file.html │ ├── files.html │ ├── graph.html │ ├── layout.html │ ├── run.html │ ├── run_base.html │ ├── runs.html │ ├── stats.html │ └── threads.html ├── test-requirements.txt ├── test_app ├── run_monitor.sh ├── run_publisher.sh ├── run_test.sh ├── test.py └── test_funcs.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/.gitignore -------------------------------------------------------------------------------- /.testr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/.testr.conf -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/README.rst -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/TODO -------------------------------------------------------------------------------- /announce.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/announce.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/command_ref.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/docs/source/command_ref.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/docs/source/faq.rst -------------------------------------------------------------------------------- /docs/source/history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/docs/source/history.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/docs/source/quickstart.rst -------------------------------------------------------------------------------- /docs/source/screenshots/call_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/docs/source/screenshots/call_graph.png -------------------------------------------------------------------------------- /docs/source/screenshots/file_contents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/docs/source/screenshots/file_contents.png -------------------------------------------------------------------------------- /docs/source/screenshots/file_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/docs/source/screenshots/file_list.png -------------------------------------------------------------------------------- /docs/source/screenshots/run_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/docs/source/screenshots/run_details.png -------------------------------------------------------------------------------- /docs/source/screenshots/runs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/docs/source/screenshots/runs.png -------------------------------------------------------------------------------- /docs/source/screenshots/stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/docs/source/screenshots/stats.png -------------------------------------------------------------------------------- /docs/source/server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/docs/source/server.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/setup.py -------------------------------------------------------------------------------- /smiley/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /smiley/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/__main__.py -------------------------------------------------------------------------------- /smiley/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/app.py -------------------------------------------------------------------------------- /smiley/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /smiley/commands/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/commands/delete.py -------------------------------------------------------------------------------- /smiley/commands/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/commands/export.py -------------------------------------------------------------------------------- /smiley/commands/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/commands/list.py -------------------------------------------------------------------------------- /smiley/commands/listen_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/commands/listen_cmd.py -------------------------------------------------------------------------------- /smiley/commands/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/commands/monitor.py -------------------------------------------------------------------------------- /smiley/commands/record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/commands/record.py -------------------------------------------------------------------------------- /smiley/commands/replay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/commands/replay.py -------------------------------------------------------------------------------- /smiley/commands/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/commands/report.py -------------------------------------------------------------------------------- /smiley/commands/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/commands/run.py -------------------------------------------------------------------------------- /smiley/commands/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/commands/server.py -------------------------------------------------------------------------------- /smiley/commands/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/commands/show.py -------------------------------------------------------------------------------- /smiley/commands/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/commands/stats.py -------------------------------------------------------------------------------- /smiley/commands/threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/commands/threads.py -------------------------------------------------------------------------------- /smiley/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/db.py -------------------------------------------------------------------------------- /smiley/db_linecache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/db_linecache.py -------------------------------------------------------------------------------- /smiley/jsonutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/jsonutil.py -------------------------------------------------------------------------------- /smiley/listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/listener.py -------------------------------------------------------------------------------- /smiley/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/local.py -------------------------------------------------------------------------------- /smiley/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/output.py -------------------------------------------------------------------------------- /smiley/presentation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /smiley/presentation/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/presentation/pagination.py -------------------------------------------------------------------------------- /smiley/presentation/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/presentation/stats.py -------------------------------------------------------------------------------- /smiley/presentation/syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/presentation/syntax.py -------------------------------------------------------------------------------- /smiley/presentation/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/presentation/trace.py -------------------------------------------------------------------------------- /smiley/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/processor.py -------------------------------------------------------------------------------- /smiley/publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/publisher.py -------------------------------------------------------------------------------- /smiley/report/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /smiley/report/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/report/html.py -------------------------------------------------------------------------------- /smiley/report/static/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/report/static/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /smiley/report/static/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/report/static/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /smiley/report/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/report/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /smiley/report/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/report/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /smiley/report/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/report/static/css/bootstrap.css -------------------------------------------------------------------------------- /smiley/report/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/report/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /smiley/report/static/css/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/report/static/css/pygments.css -------------------------------------------------------------------------------- /smiley/report/static/css/run.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/report/static/css/run.css -------------------------------------------------------------------------------- /smiley/report/static/css/stats.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/report/static/css/stats.css -------------------------------------------------------------------------------- /smiley/report/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/report/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /smiley/report/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/report/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /smiley/report/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/report/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /smiley/report/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/report/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /smiley/report/static/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/report/static/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /smiley/report/static/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/report/static/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /smiley/report/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/report/static/js/bootstrap.js -------------------------------------------------------------------------------- /smiley/report/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/report/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /smiley/report/static/js/jquery-1.10.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/report/static/js/jquery-1.10.1.js -------------------------------------------------------------------------------- /smiley/report/static/js/jquery-1.10.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/report/static/js/jquery-1.10.1.min.js -------------------------------------------------------------------------------- /smiley/report/templates/call_graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/report/templates/call_graph.html -------------------------------------------------------------------------------- /smiley/report/templates/file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/report/templates/file.html -------------------------------------------------------------------------------- /smiley/report/templates/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/report/templates/files.html -------------------------------------------------------------------------------- /smiley/report/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/report/templates/index.html -------------------------------------------------------------------------------- /smiley/report/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/report/templates/layout.html -------------------------------------------------------------------------------- /smiley/report/templates/stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/report/templates/stats.html -------------------------------------------------------------------------------- /smiley/report/templates/trace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/report/templates/trace.html -------------------------------------------------------------------------------- /smiley/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/schema.sql -------------------------------------------------------------------------------- /smiley/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/stats.py -------------------------------------------------------------------------------- /smiley/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /smiley/tests/presentation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /smiley/tests/presentation/test_pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/tests/presentation/test_pagination.py -------------------------------------------------------------------------------- /smiley/tests/presentation/test_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/tests/presentation/test_trace.py -------------------------------------------------------------------------------- /smiley/tests/test_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/tests/test_db.py -------------------------------------------------------------------------------- /smiley/tests/test_db_linecache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/tests/test_db_linecache.py -------------------------------------------------------------------------------- /smiley/tests/test_jsonutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/tests/test_jsonutil.py -------------------------------------------------------------------------------- /smiley/tests/test_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/tests/test_listener.py -------------------------------------------------------------------------------- /smiley/tests/test_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/tests/test_local.py -------------------------------------------------------------------------------- /smiley/tests/test_publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/tests/test_publisher.py -------------------------------------------------------------------------------- /smiley/tests/test_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/tests/test_stats.py -------------------------------------------------------------------------------- /smiley/tests/test_tracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/tests/test_tracer.py -------------------------------------------------------------------------------- /smiley/tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/tests/test_util.py -------------------------------------------------------------------------------- /smiley/tests/test_uuidstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/tests/test_uuidstack.py -------------------------------------------------------------------------------- /smiley/tests/web/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/tests/web/__init__.py -------------------------------------------------------------------------------- /smiley/tests/web/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /smiley/tests/web/test_functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/tests/web/test_functional.py -------------------------------------------------------------------------------- /smiley/tests/web/test_nav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/tests/web/test_nav.py -------------------------------------------------------------------------------- /smiley/tests/web/test_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/tests/web/test_units.py -------------------------------------------------------------------------------- /smiley/tracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/tracer.py -------------------------------------------------------------------------------- /smiley/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/util.py -------------------------------------------------------------------------------- /smiley/uuidstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/uuidstack.py -------------------------------------------------------------------------------- /smiley/web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /smiley/web/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/app.py -------------------------------------------------------------------------------- /smiley/web/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/config.py -------------------------------------------------------------------------------- /smiley/web/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /smiley/web/controllers/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/controllers/delete.py -------------------------------------------------------------------------------- /smiley/web/controllers/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/controllers/files.py -------------------------------------------------------------------------------- /smiley/web/controllers/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/controllers/root.py -------------------------------------------------------------------------------- /smiley/web/controllers/run_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/controllers/run_context.py -------------------------------------------------------------------------------- /smiley/web/controllers/runs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/controllers/runs.py -------------------------------------------------------------------------------- /smiley/web/controllers/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/controllers/session.py -------------------------------------------------------------------------------- /smiley/web/controllers/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/controllers/stats.py -------------------------------------------------------------------------------- /smiley/web/controllers/threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/controllers/threads.py -------------------------------------------------------------------------------- /smiley/web/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/hooks.py -------------------------------------------------------------------------------- /smiley/web/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/model/__init__.py -------------------------------------------------------------------------------- /smiley/web/nav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/nav.py -------------------------------------------------------------------------------- /smiley/web/public/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/public/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /smiley/web/public/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/public/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /smiley/web/public/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/public/css/bootstrap-theme.css -------------------------------------------------------------------------------- /smiley/web/public/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/public/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /smiley/web/public/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/public/css/bootstrap.css -------------------------------------------------------------------------------- /smiley/web/public/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/public/css/bootstrap.min.css -------------------------------------------------------------------------------- /smiley/web/public/css/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/public/css/pygments.css -------------------------------------------------------------------------------- /smiley/web/public/css/run.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/public/css/run.css -------------------------------------------------------------------------------- /smiley/web/public/css/stats.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/public/css/stats.css -------------------------------------------------------------------------------- /smiley/web/public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /smiley/web/public/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/public/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /smiley/web/public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /smiley/web/public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /smiley/web/public/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/public/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /smiley/web/public/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/public/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /smiley/web/public/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/public/js/bootstrap.js -------------------------------------------------------------------------------- /smiley/web/public/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/public/js/bootstrap.min.js -------------------------------------------------------------------------------- /smiley/web/public/js/jquery-1.10.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/public/js/jquery-1.10.1.js -------------------------------------------------------------------------------- /smiley/web/public/js/jquery-1.10.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/public/js/jquery-1.10.1.min.js -------------------------------------------------------------------------------- /smiley/web/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/templates/about.html -------------------------------------------------------------------------------- /smiley/web/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/templates/error.html -------------------------------------------------------------------------------- /smiley/web/templates/file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/templates/file.html -------------------------------------------------------------------------------- /smiley/web/templates/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/templates/files.html -------------------------------------------------------------------------------- /smiley/web/templates/graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/templates/graph.html -------------------------------------------------------------------------------- /smiley/web/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/templates/layout.html -------------------------------------------------------------------------------- /smiley/web/templates/run.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/templates/run.html -------------------------------------------------------------------------------- /smiley/web/templates/run_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/templates/run_base.html -------------------------------------------------------------------------------- /smiley/web/templates/runs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/templates/runs.html -------------------------------------------------------------------------------- /smiley/web/templates/stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/templates/stats.html -------------------------------------------------------------------------------- /smiley/web/templates/threads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/smiley/web/templates/threads.html -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /test_app/run_monitor.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | smiley --debug monitor 4 | -------------------------------------------------------------------------------- /test_app/run_publisher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/test_app/run_publisher.sh -------------------------------------------------------------------------------- /test_app/run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/test_app/run_test.sh -------------------------------------------------------------------------------- /test_app/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/test_app/test.py -------------------------------------------------------------------------------- /test_app/test_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/test_app/test_funcs.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smiley-debugger/smiley/HEAD/tox.ini --------------------------------------------------------------------------------