diff options
author | cvs2git <cvs2git> | 2010-12-27 00:04:45 +0000 |
---|---|---|
committer | cvs2git <cvs2git> | 2010-12-27 00:04:45 +0000 |
commit | c82d349f864e6bd9f96fd1156903bc1f7193a203 (patch) | |
tree | e117a87533656110b6acd56fc0ca64289892a9f5 /httemplate/autohandler | |
parent | 74e058c8a010ef6feb539248a550d0bb169c1e94 (diff) |
This commit was manufactured by cvs2svn to create tag 'TORRUS_1_0_9'.TORRUS_1_0_9
Diffstat (limited to 'httemplate/autohandler')
-rw-r--r-- | httemplate/autohandler | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/httemplate/autohandler b/httemplate/autohandler deleted file mode 100644 index ae04d423f..000000000 --- a/httemplate/autohandler +++ /dev/null @@ -1,44 +0,0 @@ -% $m->call_next; -<%init> - dbh->{'private_profile'} = {} if UNIVERSAL::can(dbh, 'sprintProfile'); -</%init> -<%filter> - -my $profile = ''; -if ( UNIVERSAL::can(dbh, 'sprintProfile') ) { - - 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 $text = dbh->sprintProfile(); - #$text =~ s/^/ /mg; - - $profile = '<PRE>'. encode_entities( $text ). "\n\n". '</PRE>'; - - } - - #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; -</%filter> -<%cleanup> - dbh->commit(); -</%cleanup> |