├── xhprof_html
├── css
│ ├── xh.css
│ ├── tablesorter.pager.css
│ └── xhprof.css
├── img
│ ├── bg.gif
│ ├── asc.gif
│ └── desc.gif
├── favicon.ico
├── docs
│ ├── sample-flat-view.jpg
│ ├── sample-callgraph-image.jpg
│ ├── sample-parent-child-view.jpg
│ ├── sample-diff-report-flat-view.jpg
│ └── sample-diff-report-parent-child-view.jpg
├── third-party
│ ├── jquery
│ │ ├── indicator.gif
│ │ ├── LICENSE
│ │ ├── jquery.tooltip.css
│ │ ├── jquery.autocomplete.css
│ │ ├── tablesorter.pager.js
│ │ ├── jquery.tooltip.js
│ │ └── tablesorter.min.js
│ └── highcharts
│ │ ├── highcharts.js
│ │ └── LICENSE
├── callgraph.php
└── index.php
├── extension
├── win32
│ ├── INSTALL
│ ├── CONFIGURE
│ ├── xhprof.dsw
│ ├── deploy.bat
│ ├── php_xhprof_win32.c
│ ├── php_xhprof_win32.h
│ ├── configure.vbs
│ ├── xhprof.example.dsp
│ └── README
├── config.m4
├── tests
│ ├── xhprof_004_inc.php
│ ├── xhprof_004_require.php
│ ├── common.php
│ ├── xhprof_003.phpt
│ ├── xhprof_008.phpt
│ ├── xhprof_005.phpt
│ ├── xhprof_002.phpt
│ ├── xhprof_004.phpt
│ ├── xhprof_006.phpt
│ ├── xhprof_001.phpt
│ └── xhprof_007.phpt
└── php_xhprof.h
├── xhprof_lib
├── .gitignore
├── templates
│ ├── footer.phtml
│ ├── emptyBody.phtml
│ ├── profTable.phtml
│ ├── print_flat_data.phtml
│ ├── profChart.phtml
│ ├── header.phtml
│ ├── chart.phtml
│ ├── single_run_header_block.phtml
│ └── diff_run_header_block.phtml
├── utils
│ ├── xhprof_runs.php
│ ├── common.php
│ ├── xhprof_runs_pdo.php
│ └── xhprof_runs_mysql.php
├── display
│ └── typeahead_common.php
└── config.sample.php
├── CREDITS
├── external
├── footer.php
└── header.php
├── .gitignore
├── README.HIGHCHARTS
├── INSTALL
├── examples
└── sample.php
├── README.markdown
├── CHANGELOG
├── package.xml
└── LICENSE
/xhprof_html/css/xh.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/extension/win32/INSTALL:
--------------------------------------------------------------------------------
1 | see README
--------------------------------------------------------------------------------
/extension/win32/CONFIGURE:
--------------------------------------------------------------------------------
1 | see README
--------------------------------------------------------------------------------
/xhprof_lib/.gitignore:
--------------------------------------------------------------------------------
1 | config.php
2 |
--------------------------------------------------------------------------------
/xhprof_lib/templates/footer.phtml:
--------------------------------------------------------------------------------
1 |