summaryrefslogtreecommitdiff
path: root/htetc
diff options
context:
space:
mode:
authorivan <ivan>2003-08-08 02:02:41 +0000
committerivan <ivan>2003-08-08 02:02:41 +0000
commitef7bb336cc67f127fb1d77532ad3da1369c0ae36 (patch)
treec2497e7638806744c54097d2ecd017d4423dfd2e /htetc
parent69ecd0e15d3de36b56ad133d5ae57dcddc53c63e (diff)
- fix Mason profiling to pass-through images (for graph/)
- fix graph/money-time.cgi use of $m interfering with Mason - fix graph/money-time-graph.cgi to set content-type in a Mason/ASP-independant fashion - (beginning of) includes! - (beginning of) moving SQL search to including generic elements/search.html - fix global.asa typo - fix masonize to not prepend an extraneous blank line (breaking graph/money-time-graph.cgi)
Diffstat (limited to 'htetc')
-rw-r--r--htetc/global.asa6
1 files changed, 5 insertions, 1 deletions
diff --git a/htetc/global.asa b/htetc/global.asa
index c7056fc03..5b0ac4991 100644
--- a/htetc/global.asa
+++ b/htetc/global.asa
@@ -73,7 +73,7 @@ sub Script_OnStart {
$p = popurl(2);
#print $cgi->header( '-expires' => 'now' );
#dbh->{'private_profile'} = {} if dbh->can('sprintProfile');
- dbh->{'private_profile'} = {} if UNIVERSAL::can(dbh, 'sprintProfile') );
+ dbh->{'private_profile'} = {} if UNIVERSAL::can(dbh, 'sprintProfile');
#really should check for FS::Profiler or something
# Devel::AutoProfiler _our_ VERSION? thanks a fucking lot
@@ -191,5 +191,9 @@ sub sprintAutoProfile {
}
+sub include {
+ $Response->Include(@_);
+}
+
1;