X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fautohandler;h=ae04d423f7edde9b442747cf95358d782bef1c2d;hb=d0221fabd4656b3a04251ca6168cc45f54d23574;hp=bdea50534232e66a6d310e37b8ceae1e9b4a3f7f;hpb=5e05724a635a22776f1b973f5d7e77989da4e048;p=freeside.git diff --git a/httemplate/autohandler b/httemplate/autohandler index bdea50534..ae04d423f 100644 --- a/httemplate/autohandler +++ b/httemplate/autohandler @@ -7,23 +7,32 @@ my $profile = ''; if ( UNIVERSAL::can(dbh, 'sprintProfile') ) { - if ( lc($r->content_type) eq 'text/html' ) { + if ( lc($r->content_type) eq 'text/html' + && $FS::CurrentUser::CurrentUser->option('show_db_profile') + ) + { ## barely worth it, just in case someone tries to use profiling on a ## non-RT install #eval "use Text::Wrapper;"; #die $@ if $@; - my $wrapper = new Text::Wrapper( columns => 80 ); my $text = dbh->sprintProfile(); - #my $text = $wrapper->wrap( dbh->sprintProfile() ); - $text =~ s/^/ /mg; - - $profile = '
'.
-               encode_entities( $text ).
-               #"\n\n". &sprintAutoProfile(). '
'; - "\n\n". ''; - } + #$text =~ s/^/ /mg; + + $profile = '
'.  encode_entities( $text ). "\n\n". '
'; + + } + + #well, could do this without sprintProfile, but definiately don't want it on + #unless DBIx::Profile is loaded + if ( $FS::CurrentUser::CurrentUser->option('save_db_profile') ) { + #my $file = %%%FREESIDE_LOG%%%; #substitute here? maybe get from FS.pm? + my $file = '/usr/local/etc/freeside/'; #bah + $file .= "dbix_profile.$$.". time; + dbh->setLogFile($file); + dbh->printProfile(); + } dbh->{'private_profile'} = {}; }