├── templates ├── reports.lucius ├── reports.julius ├── reports.hamlet ├── header.hamlet ├── home.julius ├── header.lucius ├── default-layout.hamlet ├── default-layout.lucius ├── home.hamlet ├── home.lucius ├── reports-id.hamlet ├── reports-id.lucius └── reports-id.julius ├── static ├── js │ ├── d3.min.js │ ├── d3.layout.min.js │ ├── jquery.ui.widget.js │ ├── jquery.fileupload.js │ ├── jquery.iframe-transport.js │ ├── tkyprof.js │ └── jquery.pjax.js └── images │ └── tkyprof-logo-orange.png ├── Setup.hs ├── config ├── favicon.png ├── routes ├── StaticFiles.hs └── Settings.hs ├── materials ├── snail.svgz └── snail-black.svgz ├── .gitignore ├── .gitmodules ├── Handler ├── Home.hs ├── Reports │ └── Helpers.hs └── Reports.hs ├── bin ├── prof2json.hs └── tkyprof.hs ├── README.markdown ├── LICENSE ├── Model.hs ├── Controller.hs ├── TKYProf.hs ├── .travis.yml ├── tkyprof.cabal └── ProfilingReport.hs /templates/reports.lucius: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/js/d3.min.js: -------------------------------------------------------------------------------- 1 | ../../modules/d3/d3.min.js -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /static/js/d3.layout.min.js: -------------------------------------------------------------------------------- 1 | ../../modules/d3/d3.layout.min.js -------------------------------------------------------------------------------- /static/js/jquery.ui.widget.js: -------------------------------------------------------------------------------- 1 | ../../modules/jquery-ui/ui/jquery.ui.widget.js -------------------------------------------------------------------------------- /templates/reports.julius: -------------------------------------------------------------------------------- 1 | $(function() { 2 | console.log("reports"); 3 | }); -------------------------------------------------------------------------------- /static/js/jquery.fileupload.js: -------------------------------------------------------------------------------- 1 | ../../modules/jQuery-File-Upload/jquery.fileupload.js -------------------------------------------------------------------------------- /config/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoe/tkyprof/HEAD/config/favicon.png -------------------------------------------------------------------------------- /materials/snail.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoe/tkyprof/HEAD/materials/snail.svgz -------------------------------------------------------------------------------- /static/js/jquery.iframe-transport.js: -------------------------------------------------------------------------------- 1 | ../../modules/jQuery-File-Upload/jquery.iframe-transport.js -------------------------------------------------------------------------------- /materials/snail-black.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoe/tkyprof/HEAD/materials/snail-black.svgz -------------------------------------------------------------------------------- /static/images/tkyprof-logo-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoe/tkyprof/HEAD/static/images/tkyprof-logo-orange.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .dist-scion/ 2 | dist/ 3 | client_session_key.aes 4 | static/tmp/ 5 | /*.sublime-* 6 | /cabal-dev/ 7 | /.cabal-sandbox/ 8 | /cabal.sandbox.config 9 | -------------------------------------------------------------------------------- /templates/reports.hamlet: -------------------------------------------------------------------------------- 1 |

All reports 2 | $maybe _ <- listToMaybe reports 3 |