Author: tim.bunce
Date: Tue Oct 21 13:23:33 2008
New Revision: 529
Modified:
trunk/Changes
trunk/bin/nytprofhtml
Log:
Exclusive and Inclusive time column positions have been switched
to be consistent with how the times are presented elsewhere
Modified: trunk/Changes
==============================================================================
--- trunk/Changes (original)
+++ trunk/Changes Tue Oct 21 13:23:33 2008
@@ -25,6 +25,8 @@
The html global subroutine index pages no longer list subs that
were never called.
+ Exclusive and Inclusive time column positions have been switched
+ to be consistent with how the times are presented elsewhere.
Removed use of vfscanf() to improve portability to Windows
and old unix systems, thanks to Jan Dubois.
Modified: trunk/bin/nytprofhtml
==============================================================================
--- trunk/bin/nytprofhtml (original)
+++ trunk/bin/nytprofhtml Tue Oct 21 13:23:33 2008
@@ -168,8 +168,8 @@
<th>Calls</th>
<th><span title="Number of Places sub is called from">P</span></th>
<th><span title="Number of Files sub is called from">F</span></th>
- <th>Inclusive<br />Time</th>
<th>Exclusive<br />Time</th>
+ <th>Inclusive<br />Time</th>
<th colspan=2 class="left_indent_header">Subroutine</th>
</tr>
};
@@ -185,8 +185,8 @@
$sub_links .= determine_severity(undef, $sub->calls || 0,
$dev_calls);
$sub_links .= determine_severity(undef, $sub->caller_count || 0,
$dev_call_count);
$sub_links .= determine_severity(undef, $sub->caller_fids || 0,
$dev_call_fids);
- $sub_links .= determine_severity(undef, $sub->incl_time || 0,
$dev_incl_time);
$sub_links .= determine_severity(undef, $sub->excl_time || 0,
$dev_excl_time);
+ $sub_links .= determine_severity(undef, $sub->incl_time || 0,
$dev_incl_time);
# package and subname
my $subname = $sub->subname;
--~--~---------~--~----~------------~-------~--~----~
You've received this message because you are subscribed to
the Devel::NYTProf Development User group.
Group hosted at: http://groups.google.com/group/develnytprof-dev
Project hosted at: http://perl-devel-nytprof.googlecode.com
CPAN distribution: http://search.cpan.org/dist/Devel-NYTProf
To post, email: [email protected]
To unsubscribe, email: [EMAIL PROTECTED]
-~----------~----~----~----~------~----~------~--~---