├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── demo ├── .gitignore ├── busy_server.py ├── create_profile.sh ├── hello.html ├── profiles │ └── sample.out ├── requirements.txt ├── setup.sh └── view_profile.sh ├── maint └── vm │ ├── shared-setup.sh │ └── ubuntu10.04 │ ├── Vagrantfile │ ├── setup.sh │ └── tox.ini ├── plop ├── __init__.py ├── callgraph.py ├── collector.py ├── platform.py ├── static │ ├── force.js │ └── styles.css ├── templates │ ├── force-flat.html │ ├── force.html │ └── index.html ├── test │ ├── __init__.py │ ├── callgraph_test.py │ ├── collector_test.py │ ├── platform_test.py │ └── runtests.py └── viewer.py ├── requirements-py27.txt ├── requirements.txt ├── setup.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .tox 3 | MANIFEST 4 | .vagrant 5 | dist 6 | profiles 7 | plop.egg-info 8 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdarnell/plop/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdarnell/plop/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdarnell/plop/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdarnell/plop/HEAD/README.rst -------------------------------------------------------------------------------- /demo/.gitignore: -------------------------------------------------------------------------------- 1 | envs/* 2 | -------------------------------------------------------------------------------- /demo/busy_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdarnell/plop/HEAD/demo/busy_server.py -------------------------------------------------------------------------------- /demo/create_profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdarnell/plop/HEAD/demo/create_profile.sh -------------------------------------------------------------------------------- /demo/hello.html: -------------------------------------------------------------------------------- 1 | Hello {{name}}! 2 | -------------------------------------------------------------------------------- /demo/profiles/sample.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdarnell/plop/HEAD/demo/profiles/sample.out -------------------------------------------------------------------------------- /demo/requirements.txt: -------------------------------------------------------------------------------- 1 | tornado==2.3 2 | .. 3 | -------------------------------------------------------------------------------- /demo/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdarnell/plop/HEAD/demo/setup.sh -------------------------------------------------------------------------------- /demo/view_profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdarnell/plop/HEAD/demo/view_profile.sh -------------------------------------------------------------------------------- /maint/vm/shared-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdarnell/plop/HEAD/maint/vm/shared-setup.sh -------------------------------------------------------------------------------- /maint/vm/ubuntu10.04/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdarnell/plop/HEAD/maint/vm/ubuntu10.04/Vagrantfile -------------------------------------------------------------------------------- /maint/vm/ubuntu10.04/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdarnell/plop/HEAD/maint/vm/ubuntu10.04/setup.sh -------------------------------------------------------------------------------- /maint/vm/ubuntu10.04/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdarnell/plop/HEAD/maint/vm/ubuntu10.04/tox.ini -------------------------------------------------------------------------------- /plop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plop/callgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdarnell/plop/HEAD/plop/callgraph.py -------------------------------------------------------------------------------- /plop/collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdarnell/plop/HEAD/plop/collector.py -------------------------------------------------------------------------------- /plop/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdarnell/plop/HEAD/plop/platform.py -------------------------------------------------------------------------------- /plop/static/force.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdarnell/plop/HEAD/plop/static/force.js -------------------------------------------------------------------------------- /plop/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdarnell/plop/HEAD/plop/static/styles.css -------------------------------------------------------------------------------- /plop/templates/force-flat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdarnell/plop/HEAD/plop/templates/force-flat.html -------------------------------------------------------------------------------- /plop/templates/force.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdarnell/plop/HEAD/plop/templates/force.html -------------------------------------------------------------------------------- /plop/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdarnell/plop/HEAD/plop/templates/index.html -------------------------------------------------------------------------------- /plop/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plop/test/callgraph_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdarnell/plop/HEAD/plop/test/callgraph_test.py -------------------------------------------------------------------------------- /plop/test/collector_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdarnell/plop/HEAD/plop/test/collector_test.py -------------------------------------------------------------------------------- /plop/test/platform_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdarnell/plop/HEAD/plop/test/platform_test.py -------------------------------------------------------------------------------- /plop/test/runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdarnell/plop/HEAD/plop/test/runtests.py -------------------------------------------------------------------------------- /plop/viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdarnell/plop/HEAD/plop/viewer.py -------------------------------------------------------------------------------- /requirements-py27.txt: -------------------------------------------------------------------------------- 1 | tornado<6.0 2 | six 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tornado 2 | six 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdarnell/plop/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdarnell/plop/HEAD/tox.ini --------------------------------------------------------------------------------