X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fautohandler;h=3cc8e1021b1764da697ab3c8e2a31c446fc4e73f;hp=a017eccb7a7181a8e5961882e58de9f5b401c51a;hb=HEAD;hpb=580330233cbf32c58d9f29dc391bd2ebd83e16d5 diff --git a/httemplate/autohandler b/httemplate/autohandler index a017eccb7..3cc8e1021 100644 --- a/httemplate/autohandler +++ b/httemplate/autohandler @@ -1,32 +1,50 @@ % $m->call_next; <%init> + + $FS::Maketext::lh = ''; + dbh->{'private_profile'} = {} if UNIVERSAL::can(dbh, 'sprintProfile'); + <%filter> -my $profile = ''; if ( UNIVERSAL::can(dbh, 'sprintProfile') ) { - if ( lc($r->content_type) eq 'text/html' ) { + my $profile = ''; + + if ( $r && lc($r->content_type) =~ /^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'} = {}; + + s/(<\/BODY>[\s\n]*<\/HTML>[\s\n]*)/$profile$1/i; } -s/(<\/BODY>[\s\n]*<\/HTML>[\s\n]*)$/$profile$1/i; +<%cleanup> + dbh->commit() if dbh; +