summaryrefslogtreecommitdiffstats
path: root/system/libraries/Profiler.php
AgeCommit message (Collapse)AuthorFilesLines
2012-04-03Clean up the Profiler libraryAndrey Andreev1-95/+101
2012-03-09Bumped CodeIgniter's PHP requirement to 5.2.4.Phil Sturgeon1-1/+1
Yes I know PHP 5.4 just came out, and yes I know PHP 5.3 has lovely features, but there are plenty of corporate systems running on CodeIgniter and PHP 5.3 still is not widely supported enough. CodeIgniter is great for distributed applications, and this is the highest we can reasonably go without breaking support. PHP 5.3 will most likely happen in another year or so. Fingers crossed on that one anyway...
2012-03-02Fix issue #803 (Profiler library didn't handle objects properly)Andrey Andreev1-7/+5
2012-01-02Updating copyright date to 2012Greg Aker1-1/+1
2011-12-25Improve the Profiler libraryAndrey Andreev1-144/+81
2011-10-20adding new license file (OSL 3.0) and updating readme to ReSTDerek Jones1-4/+16
added notice of license to all source files. OSL to all except the few files we ship inside of the application folder, those are AFL. Updated license in user guide. incrementing next dev version to 3.0 due to licensing change
2011-09-05CI_Profiler => Accepting objects while profiling session data.Pedro Junior1-1/+1
2011-08-22Fixed #56yterajima1-2/+2
_compile_session_data() is 'protected' to be able to extend MY_Profiler.
2011-07-02backed out 648b42a75739, which was a NON-trivial whitespace commit. It ↵Derek Jones1-13/+13
broke the Typography class's string replacements, for instance
2011-04-25Fixed double-space typo.Razican1-13/+13
2011-04-25Fixed #60.Razican1-11/+11
2011-04-18changeset: 2204:37301a84c8beGreg Aker1-6/+29
tag: tip user: Greg Aker <greg.aker@ellislab.com> date: Mon Apr 18 15:51:28 2011 -0500 summary: Adding toggle show/hide on database queries in the output profiler. Added a profiler config item to set a threshold of when to hide the queries by default. Additionally, fixed a bug I created earlier today by marking the $CI class var in CI_Profiler as private.
2011-04-18Added Session Class userdata to the output profiler. Additionally, added a ↵Greg Aker1-6/+39
show/hide toggle on HTTP Headers, Session Data and Config Variables.
2011-02-14Whitespace cleanup in libraries/Pascal Kriete1-2/+2
2011-01-05Hey look, it's 2011Greg Aker1-1/+1
2010-12-21Fix #85 error in db queries in the output profiler.Greg Aker1-1/+1
2010-11-19Updating Output Profiler to validate xHTML Strict, and HTML5.Greg Aker1-25/+24
2010-11-10Changing method visibility in the Profiler classGreg Aker1-25/+14
2010-11-10Updating PHP requirements in files 5.1.6Greg Aker1-1/+1
2010-10-04Cleanup of stray spaces and tabsBarry Mieny1-92/+92
2010-09-15Fixed ↵Greg Aker1-1/+1
http://bitbucket.org/ellislab/codeigniter/issue/38/slight-bug-with-profilerphp Slight tweak to SQL query display in output profiler.
2010-09-15Updates to output profiler html validation. ↵Greg Aker1-6/+6
http://bitbucket.org/ellislab/codeigniter/issue/111/profiler-output-does-not-validate
2010-05-13added htmlspecialchars to config item output, fixes #41Derek Jones1-2/+2
2010-04-29Changing order of available sections in the output profiler.Greg Aker1-4/+9
2010-04-01Fixing Validation error in output profilerGreg Aker1-4/+0
2010-03-10added ability to enable/disable individual sections of the ProfilerDerek Jones1-11/+63
2010-03-03adding HTTP_X_FORWARDED_FOR header to ProfilerDerek Jones1-1/+1
2010-01-16adding http headers and config to CI profilerDerek Allard1-6/+75
2010-01-05updated copyrightsDerek Jones1-1/+1
2009-12-07Fixed a language key in the profiler: "profiler_no_memory_usage" to ↵Derek Allard1-1/+1
"profiler_no_memory".
2009-11-20margin fixDerek Allard1-1/+1
2009-07-29PHP 5.3.0 compatibility changesDerek Jones1-2/+2
2009-04-22updated copyrights to 2009Derek Jones1-1/+1
2008-11-13Changing EOL style to LFDerek Allard1-391/+391
2008-10-17Finessed the SQL highlightingRick Ellis1-9/+13
2008-10-17re-implementing profiler outputDerek Allard1-6/+5
2008-10-17set $dbs to an empty array before accessingDerek Jones1-0/+2
2008-10-17Added support for multiple database connectionsRick Ellis1-15/+34
2008-10-01Updated copyrightRick Ellis1-1/+1
2008-09-21Added controller class/method info to profilerRick Ellis1-10/+33
2008-09-13updated copyrightRick Ellis1-1/+1
2008-08-20Changed the output of the profiler to use style attribute rather then clear, ↵Derek Allard1-2/+2
and added the id "codeigniter_profiler" to the container div
2008-05-13Some sweeping syntax changes for consistency:Derek Jones1-6/+6
(! foo) changed to ( ! foo) || changed to OR changed newline standardization code in various places from preg_replace to str_replace
2008-05-11Removed closing PHP tags, replaced with a comment block identifying the end ↵Derek Jones1-1/+3
of the file
2008-05-11Undoing change committed in r1115Derek Jones1-0/+1
2008-05-11removed closing PHP tag from all framework filesDerek Jones1-1/+0
2008-05-05Added get_dir_file_info(), get_file_info(), and get_mime_by_extension() to ↵Derek Allard1-3/+3
the File Helper. Changed ( ! condition) into (! condition) within the code
2008-02-08changed order of SQL keywords in the $highlight array so OR would not be ↵Derek Jones1-1/+1
highlighted before ORDER BY
2008-01-29Removed an unused parameter from Profiler (#3332).Derek Allard1-1/+1
2008-01-23added $query_times property to DB driver for profilingDerek Jones1-10/+25
added individual query execution time to profiler output